{% extends 'base.html' %} {% block page_title %}Category Management{% endblock %} {% block header_actions %}
{% endblock %} {% block content %}| Category Name | Description | Products | Inventory Value | Created | Actions |
|---|---|---|---|---|---|
| {{ category.name }} | {% if category.description %} {{ category.description|truncatechars:50 }} {% else %} No description {% endif %} | {{ category.product_count }} | KSh {{ category.total_inventory_value|floatformat:2 }} | {{ category.created_at|date:"M d, Y" }} | |
No categories foundCreate your first category to organize products. Create Category |
|||||