X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8af19c273f0d9b6a2711bd8a17b53d4b2f61c6c2..441ef97e93a951b349356df96d8a6ef604c6cab7:/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 bf2df58dca..46a949aa12 100644 --- a/apps/workbench/app/views/application/_title_and_buttons.html.erb +++ b/apps/workbench/app/views/application/_title_and_buttons.html.erb @@ -1,3 +1,4 @@ +<% object_class = @object.class_for_display.downcase %> <% content_for :page_title do %> <%= (@object.respond_to?(:properties) and !@object.properties.nil? ? @object.properties[:page_title] : nil) || @name_link.andand.name || @@ -10,12 +11,15 @@ <% 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 %> + <%= render partial: 'extra_tab_line_buttons' %> + <% end %> + <% if current_user.andand.is_active && @object.class.copies_to_projects? %> <%= link_to( choose_projects_path( - title: 'Copy to project...', + title: "Copy this #{object_class} to:", action_name: 'Copy', action_href: actions_path, action_method: 'post', @@ -25,14 +29,15 @@ selection_param: 'uuid', success: 'redirect-to-created-object' }.to_json), - { class: "btn btn-sm btn-primary", remote: true, method: 'get' }) 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 to project...', + title: "Move this #{object_class} to:", action_name: 'Move', action_href: actions_path, action_method: 'post', @@ -42,21 +47,25 @@ selection_param: 'uuid', success: 'redirect-to-created-object' }.to_json), - { class: "btn btn-sm btn-primary", remote: true, method: 'get' }) do %> - Move to project... + { 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 %> -<% - 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%>
+<% unless flash["error"].blank? %> + +<% flash.delete("error") %> +<% end %> + +<% unless flash.empty? %> +
+ <% flash.each do |_, msg| %> +

<%= msg %>

+ <% end %> +
<% end %>