{% extends "helfertool/admin.html" %} {% load i18n bootstrap4 icons permissions %} {% block admincontent %} {% if changed_user.get_full_name %}

{{ changed_user.get_full_name }}

{% else %}

{{ changed_user.username }}

{% endif %}
{% trans "Username" %} {{ changed_user.username }}
{% trans "Email address" %} {{ changed_user.email }}
{% trans "Details" %} {% include "account/user_permissions.html" with user=changed_user %}
{% if user.is_superuser %}

{% icon "pencil-alt" %} {% trans "Edit" %}

{% endif %}

{% trans "Change password" %}

{% if pw_form %}
{% csrf_token %} {% bootstrap_form pw_form %}
{% else %}

{% trans "The password cannot be changed." %}

{% endif %} {% endblock %}