{% if current_user and current_user.is_authenticated %}
Home
{% if current_user.role == 'product_owner' %}
(Dashboard - Coming in Phase 5)
{% elif current_user.role == 'administrator' %}
(Admin Panel - Coming in Phase 6)
{% endif %}
Logout ({{ current_user.username }})
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}