{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans 'Your Account Profile' %}

{% trans 'Username:' %} {{ user.username }}
{% trans 'Name:' %} {{ user.get_full_name }}
{% if user.is_staff %}{% trans 'You have staff status' %}{% endif %}
{% if user.is_admin %}{% trans 'You have admin status' %}{% endif %}

Groups

{% if user.groups.count %} {% else %} {% trans 'No groups' %} {% endif %}

Actions

{% endblock %}