{% extends "djimporter/base.html" %} {% load i18n %} {% load static %} {% block content %}

{{ object.input_file }}


{% trans 'Created' %}
{% trans 'File' %}
{% trans 'User' %}
{% trans 'Status' %}
{% trans 'Num Rows' %}
{{ object.created_at }}
{{ object.concept }} {{ object.input_file }}
{{ object.user }}
{{ object.status }}
{% if object.num_rows %} {{ object.num_rows}} {% endif %}
{% if object.list_errors %} Go to extended detail

Errors for {{ object.input_file }}


{% if summary %}

Summarized errors found in the validated file

{% for key, error in summary.items %} {% endfor %}
# Number of lines Field Error
{{ forloop.counter }} {{ error.line_count }} {{ error.field }} {{ error.message }}

{% endif %}
{% endif %}
{% endblock %} {% block djimporter_scripts %} {% endblock %}