{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "User" %}{% endblock %} {% block content %}

{% trans "User" %} {{ user.email }}

{% if user.auth_backend == "native" %}

{% csrf_token %}
{% endif %} {% if user.require_2fa %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% trans "Anonymize" %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "Base settings" %} {% bootstrap_field form.is_active layout='control' %} {% bootstrap_field form.fullname layout='control' %} {% bootstrap_field form.locale layout='control' %} {% bootstrap_field form.timezone layout='control' %} {% bootstrap_field form.is_staff layout='control' %}
{% trans "Log-in settings" %}
{% if user.auth_backend_identifier %}
{% endif %} {% bootstrap_field form.email layout='control' %} {% if form.new_pw %} {% bootstrap_field form.new_pw layout='control' %} {% bootstrap_field form.new_pw_repeat layout='control' %} {% endif %} {% bootstrap_field form.last_login layout='control' %} {% bootstrap_field form.require_2fa layout='control' %} {% bootstrap_field form.needs_password_change layout='control' %}
{% trans "Team memberships" %}

{% trans "User history" %}

{% include "pretixcontrol/includes/logs.html" with obj=user %}
  • {{ user.date_joined|date:"SHORT_DATETIME_FORMAT" }}

    {% trans "User created." %}

  • {% endblock %}