X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1a0a58c4f22af82e0a37440af3b0948771bca5e1..722fbc71928e7fc6b91eb101788b51c2bb9577eb:/apps/workbench/app/views/user_agreements/index.html.erb diff --git a/apps/workbench/app/views/user_agreements/index.html.erb b/apps/workbench/app/views/user_agreements/index.html.erb index d37360188d..d52ad649c9 100644 --- a/apps/workbench/app/views/user_agreements/index.html.erb +++ b/apps/workbench/app/views/user_agreements/index.html.erb @@ -1,3 +1,7 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% content_for :breadcrumbs do raw '' end %> <% n_files = unsigned_user_agreements.collect(&:files).flatten(1).count %> @@ -9,13 +13,13 @@ User agreements <% end %> <% end %> -<%= form_for(unsigned_user_agreements.first, {url: {action: 'sign', controller: 'user_agreements'}, method: 'post'}) do |f| %> +<%= form_for(unsigned_user_agreements.first, {url: {action: 'sign', controller: 'user_agreements'}, method: :post}) do |f| %> <%= hidden_field_tag :return_to, request.url %>
Please check <%= n_files > 1 ? 'each' : 'the' %> box below to indicate that you have read and accepted the user agreement<%= 's' if n_files > 1 %>.
- <% if n_files == 1 and (Rails.configuration.show_user_agreement_inline rescue false) %> + <% if n_files == 1 and (Rails.configuration.Workbench.ShowUserAgreementInline rescue false) %> <% ua = unsigned_user_agreements.first; file = ua.files.first %> " type="<%= Rack::Mime::MIME_TYPES[file[1].match(/\.\w+$/)[0]] rescue '' %>" width="100%" height="400px"> @@ -23,17 +27,19 @@ User agreements
<% unsigned_user_agreements.each do |ua| %> <% ua.files.each do |file| %> - <%= f.label 'checked[]', class: 'checkbox inline' do %> - <%= check_box_tag 'checked[]', "#{ua.uuid}/#{file[0]}/#{file[1]}", false %> - Accept <%= file[1].sub(/\.[a-z]{3,4}$/,'') %> - <%= link_to 'View agreement', {controller: 'collections', action: 'show_file', uuid: ua.uuid, file: "#{file[0]}/#{file[1]}"}, {target: '_blank', class: 'btn btn-mini btn-primary'} %> - <% end %> +
+ <%= f.label 'checked[]' do %> + <%= check_box_tag 'checked[]', "#{ua.uuid}/#{file[0]}/#{file[1]}", false %> + Accept <%= file[1].sub(/\.[a-z]{3,4}$/,'') %> + <%= link_to 'View agreement', {controller: 'collections', action: 'show_file', uuid: ua.uuid, file: "#{file[0]}/#{file[1]}"}, {target: '_blank', class: 'btn btn-xs btn-info'} %> + <% end %> +
<% end %> <% end %>
- <%= f.submit 'Continue', {class: 'btn btn-primary', disabled: true} %> + <%= f.submit 'Continue', {class: 'btn btn-primary'} %>
<% end %>