{% extends "admin/users/index.html" %} {% load i18n %} {% block third_column %}
{% csrf_token %}
{% include "form_field_snippet.html" with field=form.first_name %} {% include "form_field_snippet.html" with field=form.last_name %} {% include "form_field_snippet.html" with field=form.username %} {% include "form_field_snippet.html" with field=form.email %} {% include "form_field_snippet.html" with field=form.password1 %} {% include "form_field_snippet.html" with field=form.password2 %} {% include "form_field_snippet.html" with field=form.is_active %}
{% include "form_field_snippet.html" with field=form.groups %} {% include "form_field_snippet.html" with field=form.is_staff %} {% include "form_field_snippet.html" with field=form.customer %}
    {% for t in user.get_tokens %}
  • {{ t.key }}
  • {% endfor %}
{% if user.pk %} {% trans "New Token" %} {% else %} {% trans "New Token" %} {% endif %}
{% include "form_field_snippet.html" with field=form.location %} {% include "form_field_snippet.html" with field=form.locations %}
{% include "form_field_snippet.html" with field=form.locale %} {% include "form_field_snippet.html" with field=form.region %} {% include "form_field_snippet.html" with field=form.timezone %} {% include "form_field_snippet.html" with field=form.queues %}
{% include "form_field_snippet.html" with field=form.tech_id %} {% include "form_field_snippet.html" with field=form.gsx_userid %} {% include "form_field_snippet.html" with field=form.gsx_poprefix %}
{% if user.pk and can_delete %} {% trans "Delete" %} {% else %} {% trans "Delete" %} {% endif %}
{% endblock third_column %}