Sha256: 525ee0dd8ae5ea73d34f0a20332ea8737824670b338ac7a315c7ccfdc8558989

Contents?: true

Size: 1.23 KB

Versions: 28

Compression:

Stored size: 1.23 KB

Contents

<fieldset>
<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>
</fieldset>

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
hyrax-5.1.0.pre.beta1 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.4 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.3 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.2 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.1 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.0 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.0.rc3 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.0.rc2 app/views/hyrax/collections/_default_group.html.erb
hyrax-5.0.0.rc1 app/views/hyrax/collections/_default_group.html.erb
hyrax-3.6.0 app/views/hyrax/collections/_default_group.html.erb
hyrax-4.0.0 app/views/hyrax/collections/_default_group.html.erb
hyrax-4.0.0.rc3 app/views/hyrax/collections/_default_group.html.erb
hyrax-4.0.0.rc2 app/views/hyrax/collections/_default_group.html.erb
hyrax-4.0.0.rc1 app/views/hyrax/collections/_default_group.html.erb
hyrax-3.5.0 app/views/hyrax/collections/_default_group.html.erb
hyrax-4.0.0.beta2 app/views/hyrax/collections/_default_group.html.erb
hyrax-3.4.2 app/views/hyrax/collections/_default_group.html.erb
hyrax-4.0.0.beta1 app/views/hyrax/collections/_default_group.html.erb
hyrax-3.4.1 app/views/hyrax/collections/_default_group.html.erb
hyrax-3.4.0 app/views/hyrax/collections/_default_group.html.erb