Sha256: 3273d24a8edd1b1e9ade3241ceb8811b24dfacfb7fcd4a68b6e3886b340dafac
Contents?: true
Size: 1.55 KB
Versions: 15
Compression:
Stored size: 1.55 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 %> <%# TODO: This partial is obsolete and has been renamed for now. Needs cleanup of this and other referenced unneeded items. %> <table class="table table-striped"> <caption class="sr-only"><%= t("hyrax.dashboard.my.sr.listing") %> <%= application_name %></caption> <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> <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> <%= render 'modal_delete_collection_deny' %> <%= render 'modal_edit_deny' %>
Version data entries
15 entries across 15 versions & 1 rubygems