{% extends 'theme_base.html' %} {% load i18n %} {% block body %} {% trans 'Process started' %}: {{ object.creation_datetime }}
{% if process.end_datetime %} {% trans 'Process ended' %}: {{ object.end_datetime }} {% else %} {% trans 'In progress' %} {% endif %}
{% trans 'Inserted rows' %}: {{ object.rows|length }}
{% trans 'Failed rows' %}: {{ object.error_set.all|length }} {% for action in object.template.parser.actions %} {% endfor %} {% for error in object.error_set.all %} {% for column in error.row %} {% endfor %} {% endfor %}
{% trans 'Error description' %} {{ action }}
{{ error.description }} {{ column }}
{% endblock %}