Sha256: 815cd837a11d5f0555efb9bb7eda16322072742739dc4fb403cc58e6df4c37ba
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
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>Works & Files</h3> <table id="works-table" class="table works-list"> <tr> <th>Deduplication Key</th> <th>Title</th> <th>Files</th> <th>Date</th> </tr> <% @pre_ingest_works.each do |pre_ingest_work| %> <tr> <td> <%= pre_ingest_work.deduplication_key%> </td> <td> <%= pre_ingest_work.title %> </td> <td> <%= render 'pre_ingest_files_table', pre_ingest_work: pre_ingest_work %> </td> <td> <%= pre_ingest_work.created_at.strftime("%B %-d, %Y %H:%M") %> </td> <td> <%= status_icon(pre_ingest_work.status) %> </td> </tr> <% end %> </table> <%= paginate @pre_ingest_works %> </div>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
zizia-6.0.1 | app/views/zizia/csv_import_details/show.html.erb |
zizia-6.0.0 | app/views/zizia/csv_import_details/show.html.erb |