{% extends 'base.html' %} {% block page_title %}Category Management{% endblock %} {% block header_actions %}
Add Category Back to Products
{% endblock %} {% block content %}
Categories
{{ categories.count }} categories
{% if search_query %} Clear {% endif %}
{% for category in categories %} {% empty %} {% endfor %}
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 found

Create your first category to organize products.

Create Category
{% endblock %}