{% 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 }}
{% trans 'Error description' %} | {% for action in object.template.parser.actions %}{{ action }} | {% endfor %}
---|---|
{{ error.description }} | {% for column in error.row %}{{ column }} | {% endfor %}