{% extends 'base.html.twig' %} {% block content %}
| ID | Type | Start Row | Number of Rows | File | Current Row | Last Row Imported | Date Started | Date Completed | Is Complete | Imported By | Date Created | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ import.id }} | {{ import.importType.name }} | {{ import.startRow }} | {{ import.numberOfRows }} | {{ import.fileUpload.originalName }} | {{ import.currentRow }} | {{ import.lastImportedRow }} | {% if import.dateStarted is not null %} {{ import.dateStarted.format('Y-m-d') }} {% endif %} | {% if import.dateCompleted is not null %} {{ import.dateCompleted.format('Y-m-d') }} {% endif %} | {% if import.isComplete is same as(true) %} Yes {% else %} No {% endif %} | {% if import.fileUpload.uploadedBy is not null %} {{ import.fileUpload.uploadedBy.firstName ~ ' ' ~ import.fileUpload.uploadedBy.lastName }} {% endif %} | {% if import.dateCreated is not null %} {{ import.dateCreated.format('Y-m-d') }} {% endif %} |