{% extends "base.html" %} {% load i18n %} {% block content %}
{% trans "Please select the avatars that you would like to delete." %}
{% if not avatars %} {% url 'avatar_change' as avatar_change_url %}

{% blocktrans trimmed %} You have no avatars to delete. Please upload one now. {% endblocktrans %}

{% else %}
    {{ delete_avatar_form.as_ul }}

{% csrf_token %} {% trans "Back" %}

{% endif %}
{% endblock %}