{% extends "admin/base_site.html" %} {% load i18n static admin_modify %} {% block breadcrumbs %} {% endblock %} {% block content %}
{{ user }}

{% firstof request.user.get_full_name request.user %}

{{ request.user.email }}

{% block profile_content %}

{% trans "Private Information" %}

{% blocktrans %}Not shown publicly by default. Used for completion billing, documents and how we greet you in emails and on the website.{% endblocktrans %}

{% include 'account/forms/user_preferences.html' with form=forms.user_preferences %}

{% trans "Public Information" %}

{% blocktrans %}Displayed when you post comments or reply to someone else’s comment.{% endblocktrans %}

{% trans "Avatar picture" %}

We use Gravatar, a service that associates an avatar image with your primary email address—sasri.darmajaya@gmail.com. {% trans "Change your avatar image at gravatar.com »" %}

{% include 'account/forms/profile_preferences.html' with form=forms.profile_preferences %}

{% trans "Language & Timezone" %}

{% trans 'You can use any verified email to recover your account, but only your primary email will receive notifications.' %}

{% include 'account/forms/language_preferences.html' with form=forms.language_preferences %}
{% endblock profile_content %}
{% endblock %}