X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/43aa02f5af636f874bac5ffe96cff0061bcd6a44..c7cf228372bee18d84b14fc4089a758bc157fe76:/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 deleted file mode 100644 index 398f248a39..0000000000 --- a/apps/workbench/app/views/application/_title_and_buttons.html.erb +++ /dev/null @@ -1,68 +0,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) || - @name_link.andand.name || - @object.friendly_link_name %> -<% end %> - -<% content_for :content_top do %> - <% if !['Group','User', 'Collection'].include? @object.class.to_s # projects and collections handle it themselves %> - <%= render partial: 'name_and_description' %> - <% end %> -<% end %> - -<% 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 && @object.class.copies_to_projects? %> - <%= link_to( - choose_projects_path( - title: "Copy this #{object_class} to:", - action_name: 'Copy', - action_href: actions_path, - action_method: 'post', - action_data: { - copy_selections_into_project: true, - selection: @name_link.andand.uuid || @object.uuid, - selection_param: 'uuid', - success: 'redirect-to-created-object' - }.to_json), - { 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 (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:", - action_name: 'Move', - action_href: actions_path, - action_method: 'post', - action_data: { - move_selections_into_project: true, - selection: @name_link.andand.uuid || @object.uuid, - selection_param: 'uuid', - success: 'redirect-to-created-object' - }.to_json), - { 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 %> - -<% unless flash["error"].blank? %> - -<% flash.delete("error") %> -<% end %> - -<% unless flash.empty? %> -
- <% flash.each do |_, msg| %> -

<%= msg %>

- <% end %> -
-<% end %>