<% if @objects.empty? %> <br/> <p style="text-align: center"> No <%= controller.model_class.to_s.pluralize.underscore.gsub '_', ' ' %> to display. </p> <% else %> <% attr_blacklist = ' created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at' %> <table class="table arv-index"> <thead> <tr> <% @objects.first.attributes_for_display.each do |attr, attrvalue| %> <% next if attr_blacklist.index(" "+attr) %> <th class="arv-attr-<%= attr %>"> <%= controller.model_class.attribute_info[attr.to_sym].andand[:column_heading] or attr.sub /_uuid/, '' %> </th> <% end %> <th> <!-- a column for delete buttons --> </th> </tr> </thead> <tbody> <% @objects.each do |object| %> <tr data-object-uuid="<%= object.uuid %>"> <% object.attributes_for_display.each do |attr, attrvalue| %> <% next if attr_blacklist.index(" "+attr) %> <td class="arv-object-<%= object.class.to_s %> arv-attr-<%= attr %>"> <% if attr == 'uuid' %> <%= link_to_if_arvados_object object %> <%= link_to_if_arvados_object(object, { link_text: raw('<i class="icon-hand-right"></i>') }) %> <% else %> <% if object.attribute_editable? attr %> <%= render_editable_attribute object, attr %> <% 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('<i class="icon-hand-right"></i>') }) if resource_class_for_uuid(attrvalue, {referring_object: @object}) %> <% end %> </td> <% end %> <td> <% if object.editable? %> <%= link_to({action: 'destroy', id: object.uuid}, method: :delete, remote: true, data: {confirm: "You are about to delete #{controller.model_class} #{object.uuid}.\n\nAre you sure?"}) do %> <i class="icon-trash"></i> <% end %> <% end %> </td> </tr> <% end %> </tbody> <tfoot> </tfoot> </table> <% end %>