{% extends "django_cradmin/layouts/standalone/focused.django.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %} {% trans "About" %} {% endblock title %} {% block pageheader-inner %}

{% trans "About" %}

{% trans "Below you can see information about your profile that is stored in Devilry. Report if the" %} {% trans " information is wrong" %}.

{% endblock pageheader-inner %} {% block content %} {% if not DJANGO_CRADMIN_USE_EMAIL_AUTH_BACKEND %} {% endif %} {% if DJANGO_CRADMIN_FORGOTPASSWORD_URL %} {% endif %}
{% trans "Name" %}: {{ user.fullname }}
{% trans "Email Address" %}: {{ user.email }}
{% trans "Username" %}: {{ user.username }}
{% trans "Password" %}: {% trans "Reset password" %}
{% trans "Language" %}: {% include "devilry_header/includes/change_language.django.html" %}
{% trans "Last login" %}: {{ user.last_login|date:"SHORT_DATETIME_FORMAT" }}
{% endblock content %} {% block body %} {% if DEVILRY_PROFILEPAGE_HEADER_INCLUDE_TEMPLATE %} {% include DEVILRY_PROFILEPAGE_HEADER_INCLUDE_TEMPLATE %} {% endif %} {{ block.super }} {% if DEVILRY_PROFILEPAGE_FOOTER_INCLUDE_TEMPLATE %} {% include DEVILRY_PROFILEPAGE_FOOTER_INCLUDE_TEMPLATE %} {% endif %} {% endblock body %}