- {% block heading %}
-
{% trans "Upload Bill of Materials" %}
- {{ wizard.form.media }}
- {% endblock %}
+{% block actions %}
+{% endblock %}
+
+{% block page_info %}
+
+
{% blocktrans with step=wizard.steps.step1 count=wizard.steps.count %}Step {{step}} of {{count}}{% endblocktrans %}
+ {% if description %}- {{ description }}{% endif %}
+
+
+ {% endblock form_buttons_bottom %}
+
+{% endblock page_info %}
{% block js_ready %}
{{ block.super }}
+
+enableSidebar('bom-upload');
+
{% endblock js_ready %}
diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html
index 3c75b128da..e7797680ee 100644
--- a/InvenTree/part/templates/part/detail.html
+++ b/InvenTree/part/templates/part/detail.html
@@ -64,7 +64,7 @@
{{ part.creation_date }}
{% if part.creation_user %}
- {{ part.creation_user }}
+ {{ part.creation_user }}
{% endif %}
|
diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html
index 2bd878549c..ea5484a73a 100644
--- a/InvenTree/stock/templates/stock/item_base.html
+++ b/InvenTree/stock/templates/stock/item_base.html
@@ -393,7 +393,7 @@
|
{% trans "Last Stocktake" %} |
{% if item.stocktake_date %}
-
{{ item.stocktake_date }} {{ item.stocktake_user }} |
+
{{ item.stocktake_date }} {{ item.stocktake_user }} |
{% else %}
{% trans "No stocktake performed" %} |
{% endif %}
diff --git a/InvenTree/stock/templates/stock/location_delete.html b/InvenTree/stock/templates/stock/location_delete.html
index 22b4168173..9c560e58c5 100644
--- a/InvenTree/stock/templates/stock/location_delete.html
+++ b/InvenTree/stock/templates/stock/location_delete.html
@@ -36,7 +36,7 @@ If this location is deleted, these items will be moved to the top level 'Stock'
{% for item in location.stock_items.all %}
- - {{ item.part.full_name }} - {{ item.part.description }}{% decimal item.quantity %}
+ - {{ item.part.full_name }} - {{ item.part.description }}{% decimal item.quantity %}
{% endfor %}
{% endif %}