{% extends 'extends/offcanvas.html' %} {% load i18n %} {% load crispy_forms_tags %} {% block title %}{% translate 'Runs for' %} {{ profile.name }}{% endblock %} {% block body %}
{% if runs %}
{% for run in runs %}
{{ run.get_status_display }}
{{ run.id }}({{ run.file_name }})

{% trans 'Total Items' %}
{{ run.total_rows }}
{% trans 'Processed Items' %}
{{ run.processed_rows }}
{% trans 'Skipped Items' %}
{{ run.skipped_rows }}
{% trans 'Failed Items' %}
{{ run.failed_rows }}
{% trans 'Successful Items' %}
{{ run.successful_rows }}
{% endfor %} {% else %} {% endif %}
{% endblock %}