57 lines
1.8 KiB
Text
57 lines
1.8 KiB
Text
|
<%#
|
||
|
# Collection
|
||
|
|
||
|
This partial is used on the `index` and `show` pages
|
||
|
to display a collection of resources in an HTML table.
|
||
|
|
||
|
## Local variables:
|
||
|
|
||
|
- `collection_presenter`:
|
||
|
An instance of [Administrate::Page::Collection][1].
|
||
|
The table presenter uses `ResourceDashboard::COLLECTION_ATTRIBUTES` to determine
|
||
|
the columns displayed in the table
|
||
|
- `resources`:
|
||
|
An ActiveModel::Relation collection of resources to be displayed in the table.
|
||
|
By default, the number of resources is limited by pagination
|
||
|
or by a hard limit to prevent excessive page load times
|
||
|
|
||
|
[1]: http://www.rubydoc.info/gems/administrate/Administrate/Page/Collection
|
||
|
%>
|
||
|
|
||
|
<table aria-labelledby="<%= table_title %>">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<% collection_presenter.attribute_types.each do |attr_name, attr_type| %>
|
||
|
<th class="cell-label
|
||
|
cell-label--<%= attr_type.html_class %>
|
||
|
cell-label--<%= collection_presenter.ordered_html_class(attr_name) %>"
|
||
|
scope="col"
|
||
|
role="columnheader"
|
||
|
aria-sort="<%= sort_order(collection_presenter.ordered_html_class(attr_name)) %>">
|
||
|
<%= t(
|
||
|
"helpers.label.#{collection_presenter.resource_name}.#{attr_name}",
|
||
|
default: resource_class.human_attribute_name(attr_name),
|
||
|
).titleize %>
|
||
|
</th>
|
||
|
<% end %>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
|
||
|
<tbody>
|
||
|
<% resources.each do |resource| %>
|
||
|
<tr class="js-table-row" >
|
||
|
<% collection_presenter.attributes_for(resource).each do |attribute| %>
|
||
|
<td class="cell-data cell-data--<%= attribute.html_class %>">
|
||
|
<a href="<%= manager_procedure_url(resource.id) -%>"
|
||
|
tabindex="-1"
|
||
|
class="action-show"
|
||
|
>
|
||
|
<%= render_field attribute %>
|
||
|
</a>
|
||
|
</td>
|
||
|
<% end %>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</tbody>
|
||
|
</table>
|