{% extends "adminsite/base.html" %} {% import "adminsite/_icons.html" as icons %} {% block page_title %}{{ _('Import {things}', things=view.label_plural|lower) }} ยท {{ title }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block header_class %}border-b border-base-300 lg:pt-2 lg:pb-5{% endblock %} {% block header %}

{{ _('Import {things}', things=view.label_plural|lower) }}

{% endblock %} {% block content %}
{{ csrf_input | safe if csrf_input }} {% if error %} {% endif %}

{{ _('The first row names the columns. Nothing is saved until you have seen the preview.') }}

{{ _('Columns') }}

{% for path, label in columns %} {{ path }} {% endfor %}

{{ _('A header may be the name or the label, in any case. A row with a {key} that exists changes that {thing}; a row without one adds a new one.', key=columns[0][0], thing=view.label|lower) }} {{ _('Download an empty file') }}.

{{ _('Cancel') }}
{% endblock %}