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 content %}{% endblock %}
+
+
+
+ +
+ + {% block extra_body %} + {% endblock %} + + \ No newline at end of file