{% extends "layout_fluid.html" %} {% load breadcrumb %} {% load user %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block h1 %}{{ title }}{% endblock %} {% block page_id %}accounts-profile{% endblock %} {% block content %}
{% include "administration/sidebar.html" %}
{% csrf_token %}
{% trans "Username" %}
{{ user.username }}
{% trans "Name" %}
{{ user.get_full_name }}
{% trans "E-mail" %}
{{ user.email }}
{% trans "Admin" %}
{{ user.is_superuser|yesno }}
{% include "_form.html" %}
{{ user|api_key }}
{% include "_form.html" with form=userprofileform %}
{% trans "Cancel" %}
{% endblock %}