{% import "macros.html" as macros %} {% from 'bootstrap5/form.html' import render_form %} {% from 'bootstrap5/utils.html' import render_icon %} {% block head %} {% block styles %} {{ bootstrap.load_css() }} {% endblock %} {{ config['WEBSITE_NAME'] }} {% endblock %}

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

{% block subtitle %}{{ subtitle }}{% endblock %}
{% block actions %}{% endblock %}
{% for category, message in get_flashed_messages(with_categories=True) or [] %}
{{ message|safe }}
{% 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 %}
{% trans %}Hiboo is free software distributed under the MIT license{% endtrans %}
{% block scripts %} {{ bootstrap.load_js() }} {% endblock %}