POS Kasir
{% if session.user_id %}
{{ session.nama or session.username }}
{{ session.role }}
{% endif %}
{% if session.role in ('ADMIN','FINANCE','OPERATOR','DEMO') %}
Finansial App
{% endif %}
{% if session.user_id %}
Logout
{% endif %}
{% with msgs = get_flashed_messages(with_categories=true) %}
{% for cat, msg in msgs %}
{{ msg }}
{% endfor %}
{% endwith %}