vpnmanager/templates/manager/notifications.html

6 lines
360 B
HTML
Raw Normal View History

2019-01-24 13:52:55 +00:00
{% for notification in notifications %}
<div class="alert alert-{% if notification.status == 0 %}info{% elif notification.status == 1 %}warning{% else %}danger{% endif %}">
<strong>{% if notification.status == 0 %}Notice:{% elif notification.status == 1 %}Warning:{% else %}Emergency:{% endif %}</strong> {{ notification.text }}
</div>
{% endfor %}