{% extends "base.html" %} {% block title %} Delete user {{ user.display_name }} {% 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 can 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()) }}

{% endif %} Cancel
{% endblock %}