This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/core/templates/partials/messages.html

12 lines
377 B
HTML
Raw Normal View History

2018-11-16 08:10:35 +00:00
{% if messages %}
{% for msg in messages %}
<div class="alert alert-{{ msg.level_tag }}">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span class="pficon pficon-close"></span>
</button>
<span class="pficon pficon-{{ msg.level_tag }}"></span>
<strong>{{ msg.message|safe }}</strong>
</div>
{% endfor %}
{% endif %}