{% extends "base_bootstrap.html" %} {% block title %}Create New User - ATLAS{% endblock %} {% block content %}

Create New User

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %} {{ form.username.help_text }}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %} {{ form.email.help_text }}
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %} {{ form.first_name.help_text }}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %} {{ form.last_name.help_text }}
{{ form.has_write_access }} {% if form.has_write_access.errors %}
{{ form.has_write_access.errors }}
{% endif %} {{ form.has_write_access.help_text }}
{{ form.group }} {% if form.group.errors %}
{{ form.group.errors }}
{% endif %} {{ form.group.help_text }}
Available Groups and Settings
{% if groups_info %}
{% for group_info in groups_info %} {% endfor %}
Group Token Expiration API Write Access Description
{{ group_info.group.name }} {{ group_info.token_expiration }} {% if group_info.api_write_access %} Yes {% else %} No {% endif %} {{ group_info.description|default:"No description" }}
{% else %}

No groups available.

{% endif %}
{{ form.image }}
{% if form.image.errors %}
{{ form.image.errors }}
{% endif %} {{ form.image.help_text }}
Note: The password will be automatically set as unusable. The user will need to use the password reset functionality to set their initial password.
Cancel
{% endblock %}