{% extends 'base.html.twig' %} {% block content %}

Import

{% if imports is defined and imports|length > 0 %} {% for import in imports %} {% endfor %} {% endif %}
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 %}
{% endblock %} {% block scripts_post_body %} {% endblock %}