{% block extra_head %}{% endblock %}
{{ app_name }}
{% if current_user and current_user.is_authenticated %}
Dashboard
{% for module in modules %} {% if not module.get('children') %}
{{ module.title }}
{% else %}
{{ module.title }}
{% for child in module.children %}
{{ child.title }}
{% endfor %}
{% endif %} {% endfor %} {% if current_user and current_user.is_authenticated and current_user.is_admin %}
Admin
{% for admin_module in admin_modules %}
{{ admin_module.title }}
{% endfor %}
{% endif %} {% endif %}
{% if current_user and current_user.is_authenticated %}
{{ current_user.username }} {% if current_user.is_admin %}
Admin
{% endif %}
Profile
Logout
{% else %}
Login
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block breadcrumbs %}{% endblock %}
{% block content %}{% endblock %}
Confirm Action
Are you sure you want to proceed?
{% block extra_scripts %}{% endblock %}