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 %>&nbsp;<em>Not yet implemented</em></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</fieldset>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
curate-0.5.0 app/views/curation_concern/base/_manage_related_files.html.erb
curate-0.4.2 app/views/curation_concern/base/_manage_related_files.html.erb
curate-0.3.2 app/views/curation_concern/_manage_related_files.html.erb
curate-0.3.1 app/views/curation_concern/_manage_related_files.html.erb
curate-0.2.0 app/views/curation_concern/_manage_related_files.html.erb