diff --git a/shiftflow/templates/shiftflow/warehouse_stocks.html b/shiftflow/templates/shiftflow/warehouse_stocks.html
index c72b75b..23c346f 100644
--- a/shiftflow/templates/shiftflow/warehouse_stocks.html
+++ b/shiftflow/templates/shiftflow/warehouse_stocks.html
@@ -110,6 +110,11 @@
{% if it.material_id %}
{{ it.material.full_name }}
+ {% if it.current_length and it.current_width %}
+ ({{ it.current_length|floatformat:"-g" }}×{{ it.current_width|floatformat:"-g" }} мм)
+ {% elif it.current_length %}
+ ({{ it.current_length|floatformat:"-g" }} мм)
+ {% endif %}
{% elif it.entity_id %}
{{ it.entity }}
{% else %}
|