Sha256: 0f8a6e0abb755d6a20760b1b8264409bb2e7eafbd3f0c1955bdff94699ac9e43
Contents?: true
Size: 1.81 KB
Versions: 12
Compression:
Stored size: 1.81 KB
Contents
<% id = document.id %> <tr id="document_<%= id %>"> <td> <div class="media"> <span class="<%= Hyrax::ModelIcon.css_class_for(Collection) %> collection-icon-small pull-left"></span> <div class="media-body"> <div class="media-heading"> <%= link_to hyrax.dashboard_collection_path(id) do %> <span class="sr-only"><%= t("hyrax.dashboard.my.sr.show_label") %> </span> <%= document.title_or_label %> <% end %> <a href="#" class="small" title="Click for more details"> <i id="expand_<%= id %>" class="glyphicon glyphicon-chevron-right" aria-hidden="true"></i> <span class="sr-only"> <%= "#{t("hyrax.dashboard.my.sr.detail_label")} #{document.title_or_label}" %></span> </a> </div> </div> </div> </td> <td class="text-center date"><%= document.create_date.try(:to_formatted_s, :standard) %> </td> <td class="text-center"> <%= render_visibility_link(document) %> </td> <td class="text-center"> <%= render 'hyrax/my/collection_action_menu', id: id %> </td> </tr> <tr id="detail_<%= id %>"> <!-- collection detail"> --> <td colspan="4"> <dl class="expanded-details row"> <dt class="col-xs-3 col-lg-2"><%= t("hyrax.dashboard.my.collection_list.description") %></dt> <dd class="col-xs-9 col-lg-10"><%= document.description.first %></dd> <dt class="col-xs-3 col-lg-2"><%= t("hyrax.dashboard.my.collection_list.edit_access") %></dt> <dd class="col-xs-9 col-lg-10"> <% if document.edit_groups.present? %> <%= t("hyrax.dashboard.my.collection_list.groups") %> <%= document.edit_groups.join(', ') %> <br/> <% end %> <%= t("hyrax.dashboard.my.collection_list.users") %> <%= document.edit_people.join(', ') %> </dd> </dl> </td> </tr>
Version data entries
12 entries across 12 versions & 1 rubygems