diff --git a/InvenTree/part/templates/part/part_pricing.html b/InvenTree/part/templates/part/part_pricing.html
index e552d40024..49e37fe0ad 100644
--- a/InvenTree/part/templates/part/part_pricing.html
+++ b/InvenTree/part/templates/part/part_pricing.html
@@ -1,7 +1,6 @@
{% extends "modal_form.html" %}
{% load i18n %}
-{% load inventree_extras %}
{% block pre_form_content %}
{% endif %}
- {% if min_unit_buy_price or min_unit_bom_price %}
- {% else %}
-
- {% trans 'No pricing information is available for this part.' %}
-
- {% endif %}
-
+{% if min_unit_buy_price or min_unit_bom_price %}
+{% else %}
+
+ {% trans 'No pricing information is available for this part.' %}
+
+{% endif %}
+
{% endblock %}
-
-{% block post_form_content %}
- {% settings_value "INVENTREE_DEFAULT_CURRENCY" as currency %}
- {% settings_value "PART_SHOW_GRAPH" as show_graph %}
-
- {% if show_graph and price_history %}
- {% trans 'Stock Pricing' %}
- {% if price_history|length > 1 %}
-
-
-
-
- {% blocktrans %}All prices are converted from their original currencies to {{currency}} at the current conversion-rate.{% endblocktrans %}
-
-
- {% else %}
-
- {% trans 'No stock pricing history is available for this part.' %}
-
- {% endif %}
- {% endif %}
-{% endblock %}
\ No newline at end of file