{% extends "partials/layout.html" %} {% block pageContent %}

{% trans %}Accounts{% endtrans %}

{% if complete %} {{ "The account, %s%s%s, has been successfully modified." | tr | format("", user.Username, "") | safe }} {% else %} {% if errors %} {% include "partials/error.html" %} {% else %}

{{ "Click %shere%s if you want to permanently delete this account." | tr | format('' | format(user | account_url), "") | safe }} {{ "Click %shere%s for user details." | tr | format('' | format(user | account_url), "") | safe }} {{ "Click %shere%s to list the comments made by this account." | tr | format('' | format(user | account_url), "") | safe }}

{% endif %} {% set form_type = "UpdateAccount" %} {% include "partials/account_form.html" %} {% endif %}
{% endblock %}