From 3963ece6d2e348d6a5a8683ea30d33aacd67437c Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 6 Sep 2021 07:29:40 +0200 Subject: [PATCH] make notifications go away --- InvenTree/templates/account/base.html | 30 +++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/InvenTree/templates/account/base.html b/InvenTree/templates/account/base.html index 9e9272c478..97ccec4bc5 100644 --- a/InvenTree/templates/account/base.html +++ b/InvenTree/templates/account/base.html @@ -33,18 +33,6 @@ Background Image Attribution: https://unsplash.com/photos/Ixvv3YZkd7w --> - {% if messages %} -
- {% for message in messages %} -
-
- {{message}} -
-
- {% endfor %} -
- {% endif %} -
- + {% block extra_body %} + {% endblock %} - {% block extra_body %} - {% endblock %} + {% include 'notification.html' %} + + + @@ -80,6 +71,15 @@