{# A block for specific page titles #} {% block title %}نظام إدارة الطلاب{% endblock %}
{# Section for displaying Flask flashed messages #}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {# Dynamically set background and text colors based on message category #} {% set bg_color = 'bg-blue-100 border-blue-500 text-blue-700' %} {% if category == 'success' %}{% set bg_color = 'bg-green-100 border-green-500 text-green-700' %}{% endif %} {% if category == 'danger' %}{% set bg_color = 'bg-red-100 border-red-500 text-red-700' %}{% endif %} {% if category == 'warning' %}{% set bg_color = 'bg-yellow-100 border-yellow-500 text-yellow-700' %}{% endif %} {% endfor %} {% endif %} {% endwith %}
{# This block will be filled by child templates #} {% block content %}{% endblock %}