Sha256: 866cbd0e6308b1458987c7c036924a3abc483a226d20d70cac26acf107761ad3

Contents?: true

Size: 1.46 KB

Versions: 9

Compression:

Stored size: 1.46 KB

Contents

<table id="collections-list-table" class="table table-striped collections-list-table">
  <caption class="sr-only"><%= t("hyrax.dashboard.my.sr.listing") %> <%= application_name %></caption>
  <thead>
  <tr>
    <th class="check-all text-left">
      <label for="check_all" class="sr-only">
        <%= t("hyrax.dashboard.my.sr.check_all_label") %>
      </label>
      <label class="centerizer">
        <input type="checkbox" class="check-all-checkbox" name="check_all" id="check_all" value="yes" />
        <%= t("hyrax.dashboard.my.action.select") %>
      </label>
    </th>
    <th><%= t("hyrax.dashboard.my.heading.title") %></th>
    <th><%= t("hyrax.dashboard.my.heading.type") %></th>
    <th><%= t("hyrax.dashboard.my.heading.visibility") %></th>
    <th><%= t("hyrax.dashboard.my.heading.items") %></th>
    <th><%= t("hyrax.dashboard.my.heading.last_modified") %></th>
    <th><%= t("hyrax.dashboard.my.heading.action") %></th>
  </tr>
  </thead>
  <tbody>
  <% docs.each_with_index do |document, counter| %>
    <% collection_presenter = if document.admin_set?
                                Hyrax::AdminSetPresenter.new(document, current_ability, nil)
                              else
                                Hyrax::CollectionPresenter.new(document, current_ability, nil)
                              end %>
    <%= render 'list_collections', collection_presenter: collection_presenter, counter: counter, is_admin_set: document.admin_set? %>
  <% end %>
  </tbody>
</table>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hyrax-2.3.3 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.3.2 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.3.1 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.3.0 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.2.4 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.2.3 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.2.2 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.2.1 app/views/hyrax/my/collections/_default_group.html.erb
hyrax-2.2.0 app/views/hyrax/my/collections/_default_group.html.erb