Sha256: 67185ebdbb5fd1590702cff22dae9e6246f718d2b6f2b6737476b5e17d2e16d3

Contents?: true

Size: 865 Bytes

Versions: 5

Compression:

Stored size: 865 Bytes

Contents

<h3>CSV Imports</h3>
<table class="table table-striped">
  <tr>
    <th>ID</th>
    <th>Associated User</th>
    <th>CSV File</th>
    <th>Number of Works</th>
    <th>Number of Files</th>
    <th>Total Size</th>
  </tr>
  <% @csv_import_details.each do |csv_import_detail| %>
    <tr>
      <td>
        <%= link_to csv_import_detail.id, url_for(csv_import_detail) %>
      </td>
      <td>
        <%= User.find(csv_import_detail.csv_import.user_id).email %>
      </td>
      <td>
        <%= csv_import_detail.csv_import.manifest %>
      </td>
      <td>
        <%= csv_import_detail.pre_ingest_works.count  %>
      </td>
      <td>
        <%= csv_import_detail.pre_ingest_files.count  %>
      </td>
      <td>
        <%= number_to_human_size(csv_import_detail.total_size) %>
      </td>
    </tr>
  <% end %>
</table>
<%= paginate @csv_import_details %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
zizia-5.0.1 app/views/zizia/csv_import_details/index.html.erb
zizia-5.0.0 app/views/zizia/csv_import_details/index.html.erb
zizia-4.6.0.alpha.01 app/views/zizia/csv_import_details/index.html.erb
zizia-4.5.4.alpha.01 app/views/zizia/csv_import_details/index.html.erb
zizia-4.5.3.alpha.01 app/views/zizia/csv_import_details/index.html.erb