2023-04-23 16:08:01 +00:00
|
|
|
{% load static %}
|
|
|
|
{% block header %}
|
|
|
|
<!-- Banner -->
|
2023-05-30 09:30:00 +00:00
|
|
|
{% if messages %}
|
|
|
|
{% for message in messages %}
|
|
|
|
<a href="#"{% if message.tags %} class="btn {{ message.tags }} w-full text-truncate rounded-0 py-2 border-0 position-relative" style="z-index: 1000;" {% endif %}>{{ message }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
<!--
|
|
|
|
<a href="#" class="btn btn-danger w-full text-truncate rounded-0 py-2 border-0 position-relative" style="z-index: 1000;">
|
2023-04-23 16:08:01 +00:00
|
|
|
<strong>Strong</strong> message here→
|
|
|
|
</a>
|
2023-05-30 09:30:00 +00:00
|
|
|
-->
|
|
|
|
|
2023-04-23 16:08:01 +00:00
|
|
|
{% endblock header %}
|