% if objects.empty? %>
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 owner_uuid group_class properties' %> <%= render partial: "paging", locals: {results: objects, object: @object} %> <%= form_tag do |f| %><% end %> | <% objects.first.attributes_for_display.each do |attr, attrvalue| %> <% next if attr_blacklist.index(" "+attr) %> | <%= controller.model_class.attribute_info[attr.to_sym].andand[:column_heading] or attr.sub /_uuid/, '' %> | <% end %>|
---|---|---|---|
<%= render :partial => "selection_checkbox", :locals => {:object => object} %> | <% end %><% if (current_user.is_admin and current_user.uuid != object.uuid) or !current_user.is_admin %> <%= render :partial => "show_object_button", :locals => {object: object, size: 'xs'} %> <% end %> | <% object.attributes_for_display.each do |attr, attrvalue| %> <% next if attr_blacklist.index(" "+attr) %><% if attr == 'uuid' %> <%= attrvalue %> <% else %> <%= link_to_if_arvados_object attrvalue, {referring_attr: attr, referring_object: object, with_class_name: true, friendly_name: true} %> <% end %> | <% end %><%= render partial: 'delete_object_button', locals: {object:object} %> |