{% if session.is_logged_in %}
{{ APP_CONFIG["title"] }}
{% trans %}self service{% endtrans %}
{% trans %}groups{% endtrans %}
{% if APP_CONFIG.external_links %}
{% trans %}Other Sites{% endtrans %}
{% for text, link in APP_CONFIG.external_links.items()|sort %}
{{ text }}
{% endfor %}
{% endif %}
{% trans uid=CURRENT_USER["uid"] %}Signed in as
{{ uid }}
{% endtrans %} -
{% trans %}logout{% endtrans %}
{% endif %}
{% for message in get_flashed_messages() %}
{{ message }}
{% endfor %} {% block content %} {% endblock %}