X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9e24edb1d9624b6aed38464c70cab5027586abbc..02c368b2e6f6fd05930db1b57e5887b82a6c8b36:/apps/workbench/app/views/projects/_show_data_collections.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/projects/_show_data_collections.html.erb b/apps/workbench/app/views/projects/_show_data_collections.html.erb index a8b58b8448..337629a4c8 100644 --- a/apps/workbench/app/views/projects/_show_data_collections.html.erb +++ b/apps/workbench/app/views/projects/_show_data_collections.html.erb @@ -1,3 +1,4 @@ +<% if @object.uuid != current_user.uuid # Not the "Home" project %> <% content_for :content_top do %>

@@ -8,6 +9,7 @@ <%= render_editable_attribute @object, 'description', nil, { 'data-emptytext' => "(No description provided)", 'data-toggle' => 'manual' } %> +<% end %> <% end %> <% content_for :tab_line_buttons do %> @@ -37,21 +39,31 @@ Add a subproject <% end %> - <%= link_to( - choose_projects_path( - title: 'Move this project to...', - editable: true, - action_name: 'Move', - action_href: project_path(@object.uuid), - action_method: 'put', - action_data: {selection_param: 'project[owner_uuid]', success: 'page-refresh'}.to_json), - { class: "btn btn-sm btn-primary arv-move-to-project", remote: true, method: 'get' }) do %> - Move project... - <% end %> - <%= link_to(project_path(id: @object.uuid), method: 'delete', class: 'btn btn-sm btn-primary', data: {confirm: "Really delete project '#{@object.name}'?"}) do %> - Delete project + <% if @object.uuid != current_user.uuid # Not the "Home" project %> + <%= link_to( + choose_projects_path( + title: 'Move this project to...', + editable: true, + my_root_selectable: true, + action_name: 'Move', + action_href: project_path(@object.uuid), + action_method: 'put', + action_data: {selection_param: 'project[owner_uuid]', success: 'page-refresh'}.to_json), + { class: "btn btn-sm btn-primary arv-move-to-project", remote: true, method: 'get' }) do %> + Move project... + <% end %> + <%= link_to(project_path(id: @object.uuid), method: 'delete', class: 'btn btn-sm btn-primary', data: {confirm: "Really delete project '#{@object.name}'?"}) do %> + Delete project + <% end %> <% end %> <% end %> <% end %> -<%= render partial: 'show_tab_contents', locals: {project: @object, objects_and_names: @objects_and_names, data_kind: ['arvados#collection']} %> +<% + filters = [['uuid', 'is_a', "arvados#collection"]] + @objects = @object.contents({limit: 50, include_linked: true, :filters => filters}) + objects_and_names = get_objects_and_names @objects + page_offset = next_page_offset @objects +%> + +<%= render partial: 'show_tab_contents', locals: {project: @object, objects_and_names: objects_and_names, filters: filters, page_offset: page_offset, tab_name: 'Data_collections'} %>