Sha256: 39c7efceb1bd2fd22c64544f6b3fe4b5caad0df65e504bfca8542f69ed6fe838

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

<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><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| %>
    <% if document.collection? %>
      <%= render 'hyrax/my/_index_partials/list_collections', document: document, counter: counter %>
    <% else %>
      <%= render 'hyrax/my/_index_partials/list_works', document: document, counter: counter, presenter: Hyrax::WorkShowPresenter.new(document, current_ability) %>
    <% end %>
  <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
test_hyrax-0.0.1.alpha app/views/hyrax/my/_index_partials/_default_group.html.erb