UNC-Libraries/hy-c

View on GitHub
app/views/hyrax/base/_member.html.erb

Summary

Maintainability
Test Coverage
<%# [hyc-override] https://github.com/samvera/hyrax/tree/hyrax-v4.0.0/app/views/hyrax/base/_member.html.erb %>
<tr class="<%= dom_class(member) %> attributes">
  <td class="thumbnail">
    <%= document_presenter(member).thumbnail.thumbnail_tag(alt: 'file details') %>
  </td>
  <td class="attribute attribute-filename ensure-wrapped"><%= link_to(member.link_name, contextual_path(member, @presenter)) %></td>
  <%# [hyc-override] show date_created instead of date_uploaded if present %>
  <td class="attribute attribute-date_uploaded"><%= member.try(:date_created).first || member.try(:date_uploaded) %></td>
  <td class="attribute attribute-permission"><%= member.permission_badge %></td>
  <td>
    <%= render 'actions', member: member %>
  </td>
</tr>