Sha256: 42fd3460e9e44b3b4a54dff85fb3b4bdb4d0ba4873e6631601ba477492597948
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
<table class="table table-striped"> <caption class="sr-only">Listing of items you have deposited in <%= application_name %></caption> <% unless params[:display_type] == 'list' %> <thead> <tr> <th><label for="check_all" class="sr-only"><%= t("sufia.dashboard.my.sr.check_all_label") %></label><%= render_check_all %></th> <th>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>Date Uploaded</th> <th>Visibility</th> <th>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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sufia-7.0.0.beta2 | app/views/my/_index_partials/_default_group.html.erb |
sufia-7.0.0.beta1 | app/views/my/_index_partials/_default_group.html.erb |