2
0
Fork 0
shiftregister/templates/notifications.html

7 lines
208 B
HTML

{% for message in messages %}
<div class="notification{% for tag in message.tags.split %} is-{{ tag }}{% endfor %}">
<button class="delete"></button>
{{ message }}
</div>
{% endfor %}