Sha256: 2b9b3f1993a921e782c42ea6704c56a34850a7e30c7d7b3250fb561adefa62e2

Contents?: true

Size: 879 Bytes

Versions: 4

Compression:

Stored size: 879 Bytes

Contents

<div>
  <h3>About the Import:</h3>
  <ul>
    <li>Import created by: <%= User.find(@csv_import_detail.csv_import.user_id) %>
    </li>
    <li>CSV File: <%= @csv_import_detail.csv_import.manifest %></li>
    <li>Total Size: <%= number_to_human_size(@csv_import_detail.total_size) %></li>
  </ul>

  <h3>Files</h3>
  <table id="files-table" class="dataTable display responsive nowrap table table-striped works-list" style="width:100%">
    <tr>
      <th>Filename</th>
      <th>Size</th>
      <th>Row Number</th>
    </tr>

    <% @csv_import_detail.pre_ingest_files.each do |pre_ingest_file| %>
      <tr>
        <td>
          <%= pre_ingest_file.filename %>
        </td>
        <td>
          <%= number_to_human_size(pre_ingest_file.size) %>
        </td>
        <td>
          <%= pre_ingest_file.row_number %>
        </td>
      </tr>
    <% end %>
  </table>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

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