X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/420949e37a2903ab87f64f57278dfdc6a261a7f3..42c20b25e1325124b88e3b9b285544dc41122b56:/apps/workbench/app/views/application/_show_recent.html.erb diff --git a/apps/workbench/app/views/application/_show_recent.html.erb b/apps/workbench/app/views/application/_show_recent.html.erb index b02ce1977b..537cce7a31 100644 --- a/apps/workbench/app/views/application/_show_recent.html.erb +++ b/apps/workbench/app/views/application/_show_recent.html.erb @@ -1,57 +1,68 @@ -<% if @objects.empty? %> +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + +<% if objects.empty? %>

- No <%= controller.model_class_for_display.pluralize.underscore.gsub '_', ' ' %> to display. + No <%= controller.controller_name.humanize.downcase %> to display.

<% else %> -<% attr_blacklist = ' created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at' %> +<% attr_blacklist = ' created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at owner_uuid group_class properties' %> -<%= render partial: "paging", locals: {results: @objects, object: @object} %> +<%= render partial: "paging", locals: {results: objects, object: @object} %> <%= form_tag do |f| %> + <% if objects.first and objects.first.class.goes_in_projects? %> + + <% end %> - <% @objects.first.attributes_for_display.each do |attr, attrvalue| %> + <% objects.first.attributes_for_display.each do |attr, attrvalue| %> <% next if attr_blacklist.index(" "+attr) %> <% end %> + - + - <% @objects.each do |object| %> + <% objects.each do |object| %> + <% if objects.first.class.goes_in_projects? %> + + <% end %> <% object.attributes_for_display.each do |attr, attrvalue| %> <% next if attr_blacklist.index(" "+attr) %> <% end %> + @@ -65,6 +76,6 @@ <% end %> -<%= render partial: "paging", locals: {results: @objects, object: @object} %> +<%= render partial: "paging", locals: {results: objects, object: @object} %> <% end %>
<%= controller.model_class.attribute_info[attr.to_sym].andand[:column_heading] or attr.sub /_uuid/, '' %> + +
+ <%= render :partial => "selection_checkbox", :locals => {:object => object} %> + - <%= render :partial => "selection_checkbox", :locals => {:object => object} %> + <%= render :partial => "show_object_button", :locals => {object: object, size: 'xs'} %> <% if attr == 'uuid' %> - <%= link_to_if_arvados_object object %> - <%= link_to_if_arvados_object(object, { link_text: raw('') }) %> - <% else %> - <% if object.attribute_editable? attr %> - <%= render_editable_attribute object, attr %> + <%= attrvalue %> <% else %> - <%= resource_class_for_uuid(attrvalue, referring_attr: attr, referring_object: @object).to_s %> - <%= attrvalue %> - <% end %> - <%= link_to_if_arvados_object(attrvalue, { referring_object: @object, link_text: raw('') }) if resource_class_for_uuid(attrvalue, {referring_object: @object}) %> + <%= link_to_if_arvados_object attrvalue, {referring_attr: attr, referring_object: object, with_class_name: true, friendly_name: true} %> <% end %> + <%= render partial: 'show_home_button', locals: {object:object} %> + <%= render partial: 'delete_object_button', locals: {object:object} %>