{% extends 'base.html' %} {% block title %}{{ _("Settings") }}{% endblock %} {% block dialogs %}

{{ _("Delete account") }}

{% set username %} {{ inspected_user.username }} {% endset %} {% set irreversible_bold %} irreversible {% endset %} {{ _("Do you really want to delete %(username)s's account ? This action is %(irreversible_bold)s.", username=username, irreversible_bold=irreversible_bold) }}

Close
{% endblock %} {% block content %} {{ _("User %(username)s has %(album_count)s albums", username=inspected_user.username, album_count=(inspected_user.get_albums() | length)) }}

{{ _("Change password") }}

{% if not skip_old_password %}
{% endif %}

{% if deletion_allowed %}

{{ _("Delete account") }}

{% endif %} {% endblock %}