{# *** Allow sub-templates to insert extra html to the head section *** #} {% block extra_css %}{% endblock %} {% block body %}

{{ user_manager.USER_APP_NAME }}

{% if call_or_get(current_user.is_authenticated) %} {{ current_user.username or current_user.email }}   |   {%trans%}Sign out{%endtrans%} {% else %} {%trans%}Sign in{%endtrans%} {% endif %}
{% block menu %} {% endblock %}
{# One-time system messages called Flash messages #} {% block flash_messages %} {%- with messages = get_flashed_messages(with_categories=true) -%} {% if messages %} {% for category, message in messages %} {% if category=='error' %} {% set category='danger' %} {% endif %}
{{ message|safe }}
{% endfor %} {% endif %} {%- endwith %} {% endblock %} {% block main %} {% block content %}{% endblock %} {% endblock %}


{% endblock %} {# *** Allow sub-templates to insert extra html to the bottom of the body *** #} {% block extra_js %}{% endblock %}