Sha256: 96276d5fb56f2d22c3efd716dc3a10eba7745041e531586f7f6145c2fec526a8
Contents?: true
Size: 820 Bytes
Versions: 18
Compression:
Stored size: 820 Bytes
Contents
<% # container for all documents in index list view and the members in the show view -%> <% if action_name == 'index' %> <table class="documents-<%= document_index_view_type %> table table-striped admin-set-list"> <thead> <tr> <th>Title</th> <th>Date created</th> <th>Language</th> <th>Works</th> </tr> </thead> <tbody> <%= render documents, as: :document %> </tbody> </table> <% else %> <% # This is for the member list # %> <table class="documents-<%= document_index_view_type %> table table-striped"> <thead> <tr> <th>Title</th> <th>Date created</th> <th>Creator</th> </tr> </thead> <tbody> <%= render partial: 'member_document', collection: documents %> </tbody> </table> <% end %>
Version data entries
18 entries across 18 versions & 3 rubygems