2
0
Fork 0
shiftregister/templates/notifications.html

7 lines
208 B
HTML
Raw Normal View History

2022-04-20 00:42:02 +02:00
{% for message in messages %}
<div class="notification{% for tag in message.tags.split %} is-{{ tag }}{% endfor %}">
<button class="delete"></button>
{{ message }}
</div>
{% endfor %}