{% extends "base.html" %} {% load i18n %} {% block content %}
{% 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 %}