{% for alert in spincast.alerts %}
{% set alertClass = "alert-danger" %}
{% set symbol = "✘" %}
{% if alert.alertType == "SUCCESS" %}
{% set alertClass = "alert-success" %}
{% set symbol = "✔" %}
{% elseif alert.alertType == "WARNING" %}
{% set alertClass = "alert-warning" %}
{% set symbol = "
!" %}
{% endif %}
{{symbol | raw}} {{alert.text}}
{% endfor %}
{#==========================================
Required to make sure the static Alerts
are visible (at the top of the page).
==========================================#}