diff --git a/shiftflow/templates/shiftflow/item_detail.html b/shiftflow/templates/shiftflow/item_detail.html
index 523ad3a..1be7a51 100644
--- a/shiftflow/templates/shiftflow/item_detail.html
+++ b/shiftflow/templates/shiftflow/item_detail.html
@@ -25,7 +25,15 @@
Станок
- {{ item.machine.name }}
+ {% if user_role == 'master' %}
+
+ {% else %}
+ {{ item.machine.name }}
+ {% endif %}
Материал
diff --git a/shiftflow/templates/shiftflow/planning.html b/shiftflow/templates/shiftflow/planning.html
index d6bdeec..7553ccb 100644
--- a/shiftflow/templates/shiftflow/planning.html
+++ b/shiftflow/templates/shiftflow/planning.html
@@ -4,7 +4,7 @@