{% extends "userprofile/base_2col.html" %} {% load i18n %} {% block title %}{% trans "Choose the location of your avatar" %}{% endblock %} {% block robots %}noindex,nofollow{% endblock %} {% block extrajs %} {% endblock %} {% block userprofile_navigation %} {% include "userprofile/menu.html" %} {% endblock %} {% block userprofile_content %}

{% trans "Avatar selection page" %}

{% trans "You have several options to select the image you want as avatar on your profile." %}

{% load avatars %}
{{ request.user }} {% if user.get_profile.has_avatar %}

{% trans "Delete" %}

{% endif %}
{% trans "Choose the location of your avatar" %}
  • {{ form.photo }}

  • {{ form.url }}

  • {% if AVATAR_WEBSEARCH %}
  • {% for thumb,url in images.items %} photo{{ forloop.counter }} {% endfor %}
  • {% endif %}
{% if form.errors %} {% for error,desc in form.errors.items %}

* {{desc|join:"; "}}

{% endfor %} {% endif %}
{% endblock %}