X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/90af4cd87e9525481bd0bc8120a18ebc27c9a459..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 f794192473..46a949aa12 100644 --- a/apps/workbench/app/views/application/_title_and_buttons.html.erb +++ b/apps/workbench/app/views/application/_title_and_buttons.html.erb @@ -13,6 +13,9 @@ <% if @object.class.goes_in_projects? && @object.uuid != current_user.andand.uuid # Not the "Home" project %> <% content_for :tab_line_buttons do %> + <% 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( @@ -27,7 +30,7 @@ success: 'redirect-to-created-object' }.to_json), { class: "btn btn-sm btn-primary", remote: true, method: 'get', - title: "Make a copy this #{object_class}" }) do %> + title: "Make a copy of this #{object_class}" }) do %> Copy to project... <% end %> <% end %> @@ -52,15 +55,17 @@ <% 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%>
+<% unless flash["error"].blank? %> + +<% flash.delete("error") %> +<% end %> + +<% unless flash.empty? %> +
+ <% flash.each do |_, msg| %> +

<%= msg %>

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