{% extends "admin/change_form.html" %} {% load i18n admin_list admin_csv %} {% if not is_popup %}{% block breadcrumbs %}{% endblock %}{% endif %} {% block content %}
{% block filters %} {% if cl.has_filters %}

{% trans 'Filter' %}

{% for spec in cl.filter_specs %} {% admin_list_filter_selector cl spec %} {% endfor %}
{% endif %} {% endblock %}

{% trans "Columns" %}


{% for field in fields %}
{% if field.unique and cl %} {% else %} {% endif %}
{% endfor %}
{% block form_specific %}

{{ form.import_mode }}

{{ form.skip_first }} {% trans "Skip first line" %}

{% endblock %}
{% block results %} {% for row in input %} {% for cell in row %} {% endfor %} {% endfor %}
{{ cell }}
    {% for message in output %}
    {% if forloop.first %}
    {% trans "CSV File had been procedeed" %}
    {% endif %}
    {{ message }}
    {% endfor %}
   
{% endblock %} {% endblock %}