{% extends global|yesno:'base.html,dashboard/base.html'%} {% load i18n %} {% comment %} View the user basic profile information. {% endcomment %} {% block content %}

{% trans "Basic user information" %}

{% trans "First name" %}:{{ user.first_name }}
{% trans "Last name" %}:{{ user.last_name }}
{% trans "Username" %}:{{ user.username }}
{% trans "Email" %}:{{ user.email }}
{% trans "Date joined" %}:{{ user.date_joined }}

{{ form.media }} {% endblock content %}