mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
16 lines
396 B
HTML
16 lines
396 B
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% for message in messages %}
|
|
<div class='alert alert-{{ message.tags }} alert-dismissible'>
|
|
{{ message }}
|
|
<button type="button" class="close" data-dismiss="alert"
|
|
aria-label="{% trans "Close" %}">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
{% endfor %}
|