{% extends "base.html" %} {% block title %} {{ _("Delete user %(username)s", username=user.username) }} {% endblock %} {% block content %}

{{ self.title() }}

{{ _("Deleting is permanent") }}

{% if can_delete %}

{{ _("This will delete your account, removing %(threads)d threads and %(replies)d replies.", threads=user.threads.count(), replies=user.replies.count()) }}

{% else %}

{{ _("As you have packages and/or forum threads, your account cannot be fully deleted.") }} {{ _("Instead, your account will be deactivated and all personal information wiped - including %(threads)d threads and %(replies)d replies.", threads=user.threads.count(), replies=user.replies.count()) }} {{ _("See the privacy policy for more information.") }}

{% endif %} {{ _("Cancel") }} {% if not can_delete and current_user.rank.atLeast(current_user.rank.ADMIN) %} {% endif %}
{% endblock %}