{% comment %} Floating toast stack for Django messages. Rendered outside
so it never disturbs page layout (the old top-of-main alert block used to shove the pass page around). z-index sits above the pass action bar (1030). {% endcomment %} {% if messages %}
{% for message in messages %} {% if message.tags == 'error' %}{% with level='danger' %} {% endwith %}{% else %}{% with level=message.tags|default:'info' %} {% endwith %}{% endif %} {% endfor %}
{% endif %}