diff --git a/InvenTree/build/templates/build/build_base.html b/InvenTree/build/templates/build/build_base.html
index d9764d6e25..915433b055 100644
--- a/InvenTree/build/templates/build/build_base.html
+++ b/InvenTree/build/templates/build/build_base.html
@@ -35,7 +35,7 @@ src="{% static 'img/blank_image.png' %}"
{{ build.quantity }} x {{ build.part.full_name }}
- {% if user.is_staff %}
+ {% if user.is_staff and perms.build.change_build %}
{% endif %}
diff --git a/InvenTree/company/templates/company/company_base.html b/InvenTree/company/templates/company/company_base.html
index edcc817ab3..73ebecf979 100644
--- a/InvenTree/company/templates/company/company_base.html
+++ b/InvenTree/company/templates/company/company_base.html
@@ -23,7 +23,7 @@ InvenTree | {% trans "Company" %} - {{ company.name }}
{{ company.name }}
- {% if user.is_staff %}
+ {% if user.is_staff and perms.company.change_company %}
{% endif %}
diff --git a/InvenTree/order/templates/order/order_base.html b/InvenTree/order/templates/order/order_base.html
index e047c5607f..036021b12d 100644
--- a/InvenTree/order/templates/order/order_base.html
+++ b/InvenTree/order/templates/order/order_base.html
@@ -22,7 +22,12 @@ src="{% static 'img/blank_image.png' %}"
{% block page_data %}
{% trans "Purchase Order" %} {% purchase_order_status_label order.status large=True %}
-{{ order }}
+
+ {{ order }}
+ {% if user.is_staff and perms.order.change_purchaseorder %}
+
+ {% endif %}
+
{{ order.description }}
diff --git a/InvenTree/order/templates/order/sales_order_base.html b/InvenTree/order/templates/order/sales_order_base.html
index 6028157a22..70505ddccc 100644
--- a/InvenTree/order/templates/order/sales_order_base.html
+++ b/InvenTree/order/templates/order/sales_order_base.html
@@ -32,7 +32,12 @@ src="{% static 'img/blank_image.png' %}"
{% trans "Sales Order" %} {% sales_order_status_label order.status large=True %}
-
{{ order }}
+
+ {{ order }}
+ {% if user.is_staff and perms.order.change_salesorder %}
+
+ {% endif %}
+
{{ order.description }}