{% extends "account/base.html" %} {% load i18n %} {% load avatar_tags %} {% block head_title %}{% trans "Avatar" %}{% endblock %} {% block body %}

{% trans "Avatar" %}

{% trans "Here is your current avatar:" %}

{% avatar user 80 %} {% if not avatars %}

Your avatar is currently the one found on Gravatar, but you can upload a custom avatar just for this site! To do so, simply use the form below.

( Custom avatars will not show up unless you have a confirmed email address. )

{% else %}

Select a different avatar:

( Custom avatars will not show up unless you have a confirmed email address. )

{% csrf_token %}
{% url avatar_delete as avatar_delete_url %}

{% blocktrans %}Don’t like these avatars? You can choose which ones to delete.{% endblocktrans %}

{% endif %}

{% csrf_token %}

{% endblock %} {% block extra_body %} {% load jquery_validation %} {% include_validation %} {% endblock %}