{# List all categories and ensure the selected one is highlighted #}
{% for c in categories %}
{% if category == c.name %}
{{c.name}}
{% else %}
{{c.name}}
{% endif %}
{% endfor %}
{% with messages = get_flashed_messages(with_categories=true)%}
{% if messages %}
{% for category, message in messages %}
{% endfor%}
{% endif %}
{% endwith %}