From ffb89af9e521dac143fadbecad4dd3c1d7ea4ad5 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 28 Mar 2022 10:10:02 +1100 Subject: [PATCH] Move search results panel into new template --- InvenTree/templates/base.html | 2 ++ InvenTree/templates/notifications.html | 16 ---------------- InvenTree/templates/search.html | 21 +++++++++++++++++++++ 3 files changed, 23 insertions(+), 16 deletions(-) create mode 100644 InvenTree/templates/search.html diff --git a/InvenTree/templates/base.html b/InvenTree/templates/base.html index 4695984a9d..6f364ce64b 100644 --- a/InvenTree/templates/base.html +++ b/InvenTree/templates/base.html @@ -126,9 +126,11 @@ {% endblock %} + {% include 'modals.html' %} {% include 'about.html' %} {% include "notifications.html" %} + {% include "search.html" %} diff --git a/InvenTree/templates/notifications.html b/InvenTree/templates/notifications.html index 5da84ef7b2..e7dfc86998 100644 --- a/InvenTree/templates/notifications.html +++ b/InvenTree/templates/notifications.html @@ -14,19 +14,3 @@ - diff --git a/InvenTree/templates/search.html b/InvenTree/templates/search.html new file mode 100644 index 0000000000..be6c9ca773 --- /dev/null +++ b/InvenTree/templates/search.html @@ -0,0 +1,21 @@ +{% load i18n %} + + + \ No newline at end of file