diff --git a/InvenTree/company/templates/company/partdetail.html b/InvenTree/company/templates/company/partdetail.html
index 644dc5760e..a67e0fbf2d 100644
--- a/InvenTree/company/templates/company/partdetail.html
+++ b/InvenTree/company/templates/company/partdetail.html
@@ -23,59 +23,66 @@
-
- | Supplier | {{ part.supplier.name }} |
- | SKU | {{ part.SKU }} |
-
- | Internal Part |
-
- {% if part.part %}
- {{ part.part.name }}
+
+
+
+ | Supplier | {{ part.supplier.name }} |
+ | SKU | {{ part.SKU }} |
+
+ | Internal Part |
+
+ {% if part.part %}
+ {{ part.part.name }}
+ {% endif %}
+ |
+
+ {% if part.URL %}
+ | URL | {{ part.URL }} |
{% endif %}
-
-
-{% if part.URL %}
- | URL | {{ part.URL }} |
-{% endif %}
-{% if part.description %}
- | Description | {{ part.description }} |
-{% endif %}
-{% if part.manufacturer %}
- | Manufacturer | {{ part.manufacturer }} |
- | MPN | {{ part.MPN }} |
-{% endif %}
-{% if part.note %}
- | Note | {{ part.note }} |
-{% endif %}
+ {% if part.description %}
+ | Description | {{ part.description }} |
+ {% endif %}
+ {% if part.manufacturer %}
+ | Manufacturer | {{ part.manufacturer }} |
+ | MPN | {{ part.MPN }} |
+ {% endif %}
+ {% if part.note %}
+ | Note | {{ part.note }} |
+ {% endif %}
+
+
+
+
+
| Pricing |
| Single Price | {{ part.single_price }} |
-{% if part.multiple > 1 %}
+ {% if part.multiple > 1 %}
| Order Multiple | {{ part.multiple }} |
-{% endif %}
-{% if part.base_cost > 0 %}
+ {% endif %}
+ {% if part.base_cost > 0 %}
| Base Price (Flat Fee) | {{ part.base_cost }} |
-{% endif %}
-{% if part.minimum > 1 %}
+ {% endif %}
+ {% if part.minimum > 1 %}
| Minimum Order Quantity | {{ part.minimum }} |
-{% endif %}
-
-
-
-
- Price Breaks
-
-
+ {% endif %}
+ {% if part.price_breaks.all %}
+ | Price Breaks |
| Quantity |
Price |
-{% for pb in part.price_breaks.all %}
-
- | {{ pb.quantity }} |
- {{ pb.cost }} |
-
-{% endfor %}
+ {% for pb in part.price_breaks.all %}
+
+ | {{ pb.quantity }} |
+ {{ pb.cost }} |
+
+ {% endfor %}
+ {% endif %}
+
+
+
+
|