From 9a72ddf823e74581b888dbbc8c368dc2516ece58 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 31 Aug 2021 01:39:44 +0200 Subject: [PATCH] base for login / signup layout --- InvenTree/templates/account/base.html | 88 +++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 InvenTree/templates/account/base.html diff --git a/InvenTree/templates/account/base.html b/InvenTree/templates/account/base.html new file mode 100644 index 0000000000..077bfa55bc --- /dev/null +++ b/InvenTree/templates/account/base.html @@ -0,0 +1,88 @@ +{% load static %} +{% load i18n %} +{% load crispy_forms_tags %} +{% load inventree_extras %} + + + + + + + + + + + + + + + + + + + + + + + + {% inventree_title %} | {% block head_title %}{% endblock %} + + +{% block extra_head %} +{% endblock %} + + + + + + {% if messages %} +
+ {% for message in messages %} +
+
+ {{message}} +
+
+ {% endfor %} +
+ {% endif %} + +
+ {% if part.variant_of %} +
+ {% object_link 'part-detail' part.variant_of.id part.variant_of.full_name as link %} + {% blocktrans %}This part is a variant of {{link}}{% endblocktrans %} +
+ {% endif %} +
+ + + +
+ + + +
+ + {% block extra_body %} + {% endblock %} + + \ No newline at end of file