summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/base.html')
-rw-r--r--hyperkitty/templates/base.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/hyperkitty/templates/base.html b/hyperkitty/templates/base.html
index 6af6d1e..8af354c 100644
--- a/hyperkitty/templates/base.html
+++ b/hyperkitty/templates/base.html
@@ -55,6 +55,14 @@
</div>
</header>
+ {% if flash_messages %}
+ <div class="flashmsg">
+ {% for flash_msg in flash_messages %}
+ <div class="alert alert-{{ flash_msg.type }}">{{ flash_msg.msg }}</div>
+ {% endfor %}
+ </div>
+ {% endif %}
+
{% block content %} {% endblock %}
{% block footer %} {% endblock %}