Sha256: 9bf3a6e7a6f7346c47734aff58147aa9d2a2396e7d2855e241e69a12d1a8aaa5

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

<% id = document.id %>
<tr id="document_<%= id %>">
  <td>&nbsp;
    <% if current_user and document.depositor != current_user.user_key %>
      <i class="fa fa-share" />
    <% end %>
  </td>
  <td>
    <div class="media">
      <%= link_to [main_app, document], "class" => "media-left mr-3", "aria-hidden" => "true" do %>
        <%= document_presenter(document)&.thumbnail&.thumbnail_tag(
          { class: "d-none d-md-block file_listing_thumbnail", alt: "#{document.title_or_label} #{t('hyrax.homepage.admin_sets.thumbnail')}" },
          { suppress_link: true }
        ) %>
      <% end %>
      <div class="media-body">
        <p class="media-heading">
          <strong><%= link_to document.title_or_label, [main_app, document], id: "src_copy_link#{id}", class: "#{'document-title' if document.title_or_label == document.label}" %></strong>
        </p>
        <%= render_other_collection_links(document, @presenter.id) %>
      </div>
    </div>
  </td>
  <td class="text-center"><%= document.date_uploaded %> </td>
  <td class="text-center">
    <%= render_visibility_link(document) %>
  </td>
</tr>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hyrax-5.0.3 app/views/hyrax/collections/_show_document_list_row.html.erb
hyrax-5.0.2 app/views/hyrax/collections/_show_document_list_row.html.erb
hyrax-5.0.1 app/views/hyrax/collections/_show_document_list_row.html.erb
hyrax-5.0.0 app/views/hyrax/collections/_show_document_list_row.html.erb
hyrax-5.0.0.rc3 app/views/hyrax/collections/_show_document_list_row.html.erb
hyrax-5.0.0.rc2 app/views/hyrax/collections/_show_document_list_row.html.erb