{% block head %}{% endblock %} {% if current_user.is_authenticated %} {% endif %}
{% if current_user.is_authenticated %}
{% block page_title %}Dashboard{% endblock %}
{% block topbar_actions %}{% endblock %}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for cat, msg in messages %}
{% if cat == 'success' %}✓{% elif cat == 'danger' %}✗{% elif cat == 'warning' %}⚠{% else %}ℹ{% endif %} {{ msg }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}