{% extends "base.html" %} {% load i18n inline_formset %} {% load url from future %} {% block content %}

{{page_name}}

{% if not object_list %}

{% trans "No pending imports." %}

{% else %}
{% csrf_token %} {% for import in object_list %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "File" context "file" %} {% trans "Creation" %} {% trans "Status" %} {% trans "Action" %}
{{import.name|default:"-"}} {{import.importer_type}} {% trans "Source file" %} {{import.creation_date}} ({{import.user}}) {{import.status}} {% if import.need_matching %} {% trans "Link unmatched items" %} {% endif %} {% if import.error_file %} {% trans "Error file" %} {% endif %} {% if import.result_file %} {% trans "Control file" %} {% endif %} {% if import.match_file %} {% trans "Match file" %} {% endif %}
{% endif %}
{% endblock %}