diff --git a/myproject/discounts/templates/discounts/discount_form.html b/myproject/discounts/templates/discounts/discount_form.html
index 1e9bedd..2b3319b 100644
--- a/myproject/discounts/templates/discounts/discount_form.html
+++ b/myproject/discounts/templates/discounts/discount_form.html
@@ -1,4 +1,5 @@
{% extends "system_settings/base_settings.html" %}
+{% load inventory_filters %}
{% block title %}{% if is_edit %}Редактирование скидки{% else %}Создание скидки{% endif %}{% endblock %}
@@ -33,13 +34,13 @@
@@ -47,7 +48,7 @@
-
+
@@ -58,15 +59,15 @@
@@ -74,11 +75,11 @@
@@ -87,7 +88,7 @@
+
+
{% endblock %}
diff --git a/myproject/orders/templates/orders/order_detail.html b/myproject/orders/templates/orders/order_detail.html
index d55ad7f..bd9e827 100644
--- a/myproject/orders/templates/orders/order_detail.html
+++ b/myproject/orders/templates/orders/order_detail.html
@@ -1,4 +1,5 @@
{% extends 'base.html' %}
+{% load inventory_filters %}
{% block title %}Заказ {{ order.order_number }}{% endblock %}
@@ -337,7 +338,7 @@