{% extends 'theme_base.html' %} {% load i18n %} {% block body %}
{% trans 'Started' %} | {% trans 'Ended' %} | {% trans 'Inserted' %} | {% trans 'Failed' %} |
---|---|---|---|
{{ process.creation_datetime }} | {% if process.end_datetime %} {% if process.interrupted %} {% trans 'Manually interrupted on' %} {% endif %} {{ process.end_datetime }} {% else %} {% trans 'In progress' %} {% endif %} | {{ process.rows|length }} | {{ process.error_set.count }} |