Sha256: 11aac4d1128201413af47d6093c89395778e90135ed619cfe70637dd01650854

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

<table class="table table-striped">
  <caption class="sr-only"><%= t("sufia.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("sufia.dashboard.my.sr.check_all_label") %></label><%= render_check_all %></th>
      <th><%= t("sufia.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("sufia.dashboard.my.heading.date_uploaded") %></th>
      <th><%= t("sufia.dashboard.my.heading.visibility") %></th>
      <th><%= t("sufia.dashboard.my.heading.action") %></th>
    </tr>
    </thead>
  <% end %>
  <tbody>
  <% docs.each_with_index do |document, counter| %>
    <% if document.collection? %>
      <%= render 'my/_index_partials/list_collections', document: document, counter: counter %>
    <% else %>
      <%= render 'my/_index_partials/list_works', document: document, counter: counter, presenter: Sufia::WorkShowPresenter.new(document, current_ability) %>
    <% end %>
  <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sufia-7.4.1 app/views/my/_index_partials/_default_group.html.erb
sufia-7.4.0 app/views/my/_index_partials/_default_group.html.erb
sufia-7.3.1 app/views/my/_index_partials/_default_group.html.erb
sufia-7.3.0 app/views/my/_index_partials/_default_group.html.erb
sufia-7.3.0.rc3 app/views/my/_index_partials/_default_group.html.erb
sufia-7.3.0.rc2 app/views/my/_index_partials/_default_group.html.erb