Sha256: 66e2c978955ff203f40dec4b01063bfb77360523b4df9901d21d5a936f74d5f9
Contents?: true
Size: 1.43 KB
Versions: 12
Compression:
Stored size: 1.43 KB
Contents
<% # This was renamed from _default_group to prevent if from being used for All Collection index which needs to use my/collections/_default_group %> <table class="table table-striped"> <caption class="sr-only"><%= t("hyrax.dashboard.my.sr.listing") %> <%= application_name %></caption> <% unless params[:display_type] == 'list' %> <thead> <tr> <th class="check-all"><label for="check_all" class="sr-only"><%= t("hyrax.dashboard.my.sr.check_all_label") %></label><%= render_check_all %></th> <th><%= t("hyrax.dashboard.my.heading.title") %></th> <th class="sorts-dash"><i id="<%= CatalogController.uploaded_field %>" class="<%= params[:sort] == "#{CatalogController.uploaded_field} desc" ? 'caret' : params[:sort] == "#{CatalogController.uploaded_field} asc" ? 'caret up' : ''%>"></i><%= t("hyrax.dashboard.my.heading.date_uploaded") %></th> <th><%= t("hyrax.dashboard.my.heading.visibility") %></th> <th><%= t("hyrax.dashboard.my.heading.action") %></th> </tr> </thead> <% end %> <tbody> <% docs.each_with_index do |document, counter| %> <% # Collection members may be collections or works %> <% if document.collection? %> <%= render 'list_collections', document: document, counter: counter %> <% else %> <%= render 'list_works', document: document, counter: counter, presenter: Hyrax::WorkShowPresenter.new(document, current_ability) %> <% end %> <% end %> </tbody> </table>
Version data entries
12 entries across 12 versions & 1 rubygems