{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %} {% if 'success' in message.lower() %} {% set toast_class = 'bg-success text-white' %} {% set toast_icon = 'success' %} {% set title = 'success' %} {% elif 'error' in message.lower() %} {% set toast_class = 'bg-danger text-white' %} {% set toast_icon = 'error' %} {% set title = 'Error' %} {% elif 'warning' in message.lower() %} {% set toast_class = 'bg-warning text-white' %} {% set toast_icon = 'warning' %} {% set title = 'Warning' %} {% else %} {% set toast_class = 'bg-primary text-white' %} {% set toast_icon = 'info' %} {% set title = 'Notification' %} {% endif %} {% endfor %}
{% endif %} {% endwith %}