{% import "macros.html" as macros %} {{ config['WEBSITE_NAME'] }}

{% block title %}{{ title }}{% endblock %} {% block subtitle %}{{ subtitle }}{% endblock %}

{% block actions %} {% endblock %}
{% for category, message in get_flashed_messages(with_categories=True) or [] %}
{{ message }}
{% endfor %} {% if current_user.time_to_deletion and current_user.time_to_deletion() %}
{% trans %}Your account has no active profile, it will be deleted in{% endtrans %} {{ utils.babel.dates.format_timedelta(current_user.time_to_deletion()) }}
{% endif %} {% block content %}{% endblock %}