{% if title %}
{{ title }}
{% else %}
Scan2Kasse
{% endif %}
Scan2Kasse
Home (WIP)
Übersicht
Updates
Reports
Übersicht
{% if establishments %}
Allgemein
{% for establishment in establishments %}
{{ establishment.name }}
{% endfor %} {% endif %}
Account
{% if current_user.is_authenticated %}
Sign out
{% else %}
Register
Sign in
{% endif %}
{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{% block content %}{% endblock %}