X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f2674d147238c963e055a448e94e962fe2e76619..1416b0952adc0bfee85e15d9c86a51c32fcfd003:/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 31ff2e6e21..647243a794 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,7 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% 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) || @@ -13,6 +17,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( @@ -52,15 +59,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 %>