{% extends "base.html" %} {% load i18n %} {% block subtitle %} {% trans 'Users import' %} {% endblock %} {% block actions %} {% if session %} {% trans 'Back' %} {% else %} {% trans 'Back' %} {% endif %} {% endblock %} {% block main %} {% if message %}
{{ message }}
{% endif %}
{% csrf_token %} {% if fileForm %} {% trans 'Select XLS file to import:' %}
{{ fileForm.file.errors }}
{{ fileForm.file }}
{% endif %} {% if userForm %}
{% include 'cms/extras/form.html' with form=userForm %}
{{ userForm.filename }}
{% endif %}
{% if users %}
{% for user in users %} {% endfor %}
{% trans 'Username' %} {% trans 'First name' %} {% trans 'Last name' %} {% trans 'Email' %} {% trans 'Groupset' %}
{{ user.username }} {{ user.first_name }} {{ user.last_name }} {{ user.email }} {{ user.groupset }}
{% endif %} {% endblock %}