fix(products): correct kit-update URL to productkit-update in category list

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-24 00:00:46 +03:00
parent 5070913346
commit fce8d9eb6e

View File

@@ -100,7 +100,7 @@
{% elif item.item_type == 'product' %} {% elif item.item_type == 'product' %}
<a href="{% url 'products:product-update' item.pk %}" class="btn btn-sm btn-outline-primary">Изменить</a> <a href="{% url 'products:product-update' item.pk %}" class="btn btn-sm btn-outline-primary">Изменить</a>
{% elif item.item_type == 'kit' %} {% elif item.item_type == 'kit' %}
<a href="{% url 'products:kit-update' item.pk %}" class="btn btn-sm btn-outline-primary">Изменить</a> <a href="{% url 'products:productkit-update' item.pk %}" class="btn btn-sm btn-outline-primary">Изменить</a>
{% endif %} {% endif %}
</td> </td>
</tr> </tr>