{% extends "base.html" %} {% block title %}{{ target_user.username }}{% endblock title %} {% block js %} {% endblock js %} {% block content %}

Manage User

Avatar
{{ target_user.username }}
{% if target_user.is_superuser %} Administrator {% else %} Normal User {% endif %} {% if not target_user.is_active %} Deactivated {% endif %}
Username
{{ target_user.username }}
E-mail
{{ target_user.email }}
Password
***
{% endblock content %} {% block bottom_modals %} {% include "modals/edit_field.html" %} {% endblock bottom_modals %} {% block bottomjs %} {% endblock bottomjs %}