{% block head %}{% endblock %}
{{ project_name | default("pgframx App") }}
Events
{% if current_user and current_user.is_authenticated %} {% if current_user.role.name in ["admin", "organizer"] %}
Dashboard
{% endif %}
Profile
Logout
{% else %}
Login
Register
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}
{% block scripts %}{% endblock %}