Sha256: 148eef78bfa76dc01655487bce9722dd2d390edeadc31a7a234a1ac2d817ec95
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
<fieldset> <legend> Current Files for your <%= curation_concern.human_readable_type %> </legend> <table class="table table-striped <%= dom_class(curation_concern) %> related_files with-headroom"> <caption class="table-heading"> <h4>Existing files for <em><%= curation_concern %></em></h4> </caption> <thead> <tr> <th>File</th> <th>Filename</th> <th>Date Uploaded</th> <th>Visibility</th> <th>Delete</th> </tr> </thead> <tbody> <% curation_concern.generic_files.each do |generic_file| %> <tr class="<%= dom_class(generic_file) %> attributes"> <td class="attribute title"><%= generic_file %></td> <td class="attribute filename"><%= generic_file.filename %></td> <td class="attribute date_uploaded"><%= generic_file.date_uploaded %></td> <td class="attribute permission"><%= permission_badge_for(generic_file) %></td> <td><%= check_box_tag :delete %> <em>Not yet implemented</em></td> </tr> <% end %> </tbody> </table> </fieldset>
Version data entries
5 entries across 5 versions & 1 rubygems