{% extends "base.html" %} {% load i18n %} {% load static %} {% load crispy_forms_tags %} {% block title %}{% trans "Import CSV" %}{% endblock %} {% block list_of_items %}
{% csrf_token %}

{% trans "Select a CSV UTF-8 file with the following fields separated by commas" %}: {% trans "Email, Name (Optional), Organisation (Optional)" %}

{{ form.file | as_crispy_field }}
{{ form.source | as_crispy_field }}
{% endblock %}