{% if current_user.is_authenticated %}
{% if g.tenant %}{{ g.tenant.name }}{% else %}Salon POS{% endif %}
{% if g.location %}
{{ g.location.name }}
{% endif %}
Logout
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}