diff --git a/InvenTree/part/templates/part/part_pricing.html b/InvenTree/part/templates/part/part_pricing.html
index b14be2c61f..9922813210 100644
--- a/InvenTree/part/templates/part/part_pricing.html
+++ b/InvenTree/part/templates/part/part_pricing.html
@@ -19,9 +19,10 @@
{{ quantity }} |
- {% if part.supplier_count > 0 %}
+
+{% if part.supplier_count > 0 %}
{% trans 'Supplier Pricing' %}
-
+
{% if min_total_buy_price %}
{% trans 'Unit Cost' %} |
@@ -42,12 +43,12 @@
{% endif %}
-
- {% endif %}
+
+{% endif %}
- {% if part.bom_count > 0 %}
+{% if part.bom_count > 0 %}
{% trans 'BOM Pricing' %}
-
+
{% if min_total_bom_price %}
{% trans 'Unit Cost' %} |
@@ -75,8 +76,8 @@
{% endif %}
-
- {% endif %}
+
+{% endif %}
{% if min_unit_buy_price or min_unit_bom_price %}
{% else %}
@@ -84,7 +85,5 @@
{% trans 'No pricing information is available for this part.' %}
{% endif %}
-
-
{% endblock %}
\ No newline at end of file