{{ t('app.title') }}
{% for code, name in languages %}
{{ code|upper }}
{{ ' ยท ' if not loop.last }} {% endfor %}
{% if current_user.is_authenticated %}
{{ current_user.username }}
{% if request.endpoint != 'calc' %}
{{ t('nav.calc') }}
{% endif %} {% if request.endpoint != 'settings_view' %}
{{ t('nav.settings') }}
{% endif %}
{{ t('nav.logout') }}
{{ t('nav.version') }}
{{ version.commit_short }}
{{ t('nav.deployed') }}
{{ version.deployed or version.built or t('nav.dev') }}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, msg in messages %}
{{ msg }}
{% endfor %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}