{% extends "base/base.html" %} {% block title %} Create users {% endblock title %} {% block page_heading %} Create users {% endblock page_heading %} {% block main_content %}
{% if current_page == "import" %}

Create many users via a .csv file.

File requirements A valid .csv file must contain 2 columns:
  • 'username'
  • 'usergroup'. This can be one of:
    • {% for user_group in user_groups %}
    • {{ user_group }}
    • {% endfor %}

Here is a template:

{% endif %} {% block card_content %} {% endblock card_content %}

Please note: user links will expire in {{ link_expiry_period }}.

{% include "../base/alert_messages.html" with messages=messages %}
{% if links %}
{% for username, link in links.items %} {% endfor %}
# Usernames Links {% if tsv %} {% endif %} {% if csv %} {% endif %}
{{ username }}
{% endif %}
return to user management
{% endblock main_content %}