{% extends "authentic2/manager/base.html" %} {% load i18n gadjo staticfiles %} {% block page-title %}{{ block.super }} - {% trans "Import Users" %}{% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block breadcrumb %} {{ block.super }} {% trans 'Users' %} {% trans 'Imports' %} {% trans "Users Import" %} {{ user_import.created }} {{ report_title }} {{ report.created }} {% endblock %} {% block sidebar %} {% endblock %} {% block main %}

{{ report_title }} - {{ report.created }} - {{ report.state }}

{% if report.exception %}

{% trans "Exception:" %} {{ report.exception}}

{% endif %} {% if report.importer %} {% with importer=report.importer %} {% if importer.errors %}

{% trans "Errors" %}

{% endif %}

{% trans "Abstract" %}

{% trans "Details" %}

{% if importer.rows %} {% for header in importer.headers %} {% endfor %} {% for row in importer.rows %} {% for cell in row %} {% endfor %} {% endfor %}
{% trans "Line" %} {{ header.name }} {% for flag in header.flags %} {% endfor %} {% trans "Action" %}
{{ row.line }} {{ cell.value }} {% firstof row.action "-" %}
{% else %}

{% trans "No row analysed." %}

{% endif %} {% endwith %} {% endif %} {% endblock %}