X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/96f5b2d78c60d1a16f51a269270d180b3f9a60a3..42c20b25e1325124b88e3b9b285544dc41122b56:/apps/workbench/app/views/application/show.html.erb diff --git a/apps/workbench/app/views/application/show.html.erb b/apps/workbench/app/views/application/show.html.erb index e0e1b8f63d..15b2f12636 100644 --- a/apps/workbench/app/views/application/show.html.erb +++ b/apps/workbench/app/views/application/show.html.erb @@ -1,71 +1,6 @@ -<% 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 %> +<%# Copyright (C) The Arvados Authors. All rights reserved. -<% 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 %> - -<% if @object.class.goes_in_projects? && @object.uuid != current_user.uuid # Not the "Home" project %> - <% content_for :tab_line_buttons do %> - <% if @object.class.copies_to_projects? %> - <%= link_to( - choose_projects_path( - title: 'Copy to project...', - 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' }) 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) %> - <%= link_to( - choose_projects_path( - title: 'Move to project...', - 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", remote: true, method: 'get' }) do %> - Move to project... - <% end %> - <% end %> - <% end %> -<% end %> - -<% if @object.respond_to? :properties and !@object.properties.nil? %> - <% if @object.properties[:page_content] %> - <% content_for :page_content do %> -

- <%= render_markup(@object.properties[:page_title] || @object.uuid) %> -

- - <% if @object.properties[:page_subtitle] %> -

- <%= render_markup @object.properties[:page_subtitle] %> -

- <% end %> - - <%= render_markup @object.properties[:page_content] %> - <% end %> - <% end %> -<% end %> - -<% end %> +SPDX-License-Identifier: AGPL-3.0 %> +<%= render partial: 'title_and_buttons' %> <%= render partial: 'content', layout: 'content_layout', locals: {pane_list: controller.show_pane_list }%>