X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e8b1da0f4cf859ba6bc34e4390fbad097d7a00d9..b10a9487702db5d776c09bfa11f8abcb62f7419a:/apps/workbench/app/views/application/_title_and_buttons.html.erb diff --git a/apps/workbench/app/views/application/_title_and_buttons.html.erb b/apps/workbench/app/views/application/_title_and_buttons.html.erb index c2bd726775..31ff2e6e21 100644 --- a/apps/workbench/app/views/application/_title_and_buttons.html.erb +++ b/apps/workbench/app/views/application/_title_and_buttons.html.erb @@ -11,9 +11,9 @@ <% end %> <% end %> -<% if @object.class.goes_in_projects? && @object.uuid != current_user.uuid # Not the "Home" project %> +<% if @object.class.goes_in_projects? && @object.uuid != current_user.andand.uuid # Not the "Home" project %> <% content_for :tab_line_buttons do %> - <% if @object.class.copies_to_projects? %> + <% if current_user.andand.is_active && @object.class.copies_to_projects? %> <%= link_to( choose_projects_path( title: "Copy this #{object_class} to:", @@ -26,11 +26,12 @@ selection_param: 'uuid', success: 'redirect-to-created-object' }.to_json), - { class: "btn btn-sm btn-primary", remote: true, method: 'get', title: "Copy this #{object_class} to a different project" }) do %> + { class: "btn btn-sm btn-primary", remote: true, method: 'get', + title: "Make a copy of this #{object_class}" }) do %> Copy to project... <% end %> <% end %> - <% if @object.owner_uuid == current_user.uuid or (Group.find(@object.owner_uuid).writable_by.include?(current_user.uuid) rescue nil) %> + <% if (ArvadosBase.find(@object.owner_uuid).writable_by.include?(current_user.andand.uuid) rescue nil) %> <%= link_to( choose_projects_path( title: "Move this #{object_class} to:", @@ -43,9 +44,23 @@ selection_param: 'uuid', success: 'redirect-to-created-object' }.to_json), - { class: "btn btn-sm btn-primary", remote: true, method: 'get', title: "Move this #{object_class} to a different project"}) do %> - Move... + { class: "btn btn-sm btn-primary force-cache-reload", remote: true, method: 'get', + title: "Move this #{object_class} to a different project"}) do %> + Move <%=object_class%>... <% end %> <% end %> <% end %> <% end %> + +<% + # Display any flash messages in an alert. If there is any entry with "error" key, alert-danger is used. + flash_msg = '' + flash_msg_is_error = false + flash.each do |msg| + flash_msg_is_error ||= (msg[0]=='error') + flash_msg += ('

' + msg[1] + '

') + end + if flash_msg != '' +%> +
<%=flash_msg.html_safe%>
+<% end %>