{% extends 'admin/base_site.html' %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% url 'admin:redirects_redirect_changelist' as changelist_url %} {% url 'admin:redirects_redirect_import_csv' as import_url %}
{% csrf_token %} {% if confirming %} {% if form.importer.saved_objects %}

The following redirects will be created or updated:

{% else %}

{% blocktranslate %} No redirects were found in this file. This is almost certainly an error in your CSV file. Please check that it is a CSV file whose contents make sense, then try again. {% endblocktranslate %}

{% endif %} {% if form.importer.errors %}

{% blocktranslate %} The following possible errors were found when reading your CSV file: {% endblocktranslate %}

{% if form.importer.saved_objects %}

{% blocktranslate %} You may choose to ignore these errors and continue, choose another file, or go back to the redirects list. {% endblocktranslate %}

{{ save_form.filename }} {{ save_form.csv_data }}

{% endif %} {% endif %} {% else %} {# "if confirming" #} {% if form.errors %}

{% blocktranslate %} Something went very wrong - there was no meaningful data in the file. You may have attempted to upload an Excel spreadsheet, which will not work. Or you may have uploaded the wrong file entirely. {% endblocktranslate %} {% endif %} {{ form.as_p }}

{% translate "This will not save immediately; you will get a chance to look at the redirects that will be updated or created on the next page." %}

{% endif %}
{% endblock %}