{% extends 'base.html' %} {% load static %} {% block page_title %}Product Inventory{% endblock %} {% block header_actions %}
Back
{% endblock %} {% block content %}
Filters
{{ products.count }} products
All Products
Manage Categories
Showing page {{ products.number }} of {{ products.paginator.num_pages }} ({{ products.paginator.count }} total products)
{% for product in products %} {% empty %} {% endfor %}
SKU Product Name Category Stock Price Value Status Actions
{{ product.sku }}
{% if product.image %} {{ product.name }} {% else %}
{% endif %}
{{ product.name }} {% if product.description %} {{ product.description|truncatechars:50 }} {% endif %}
{% if product.category %} {{ product.category.name }} {% else %} Uncategorized {% endif %}
{{ product.quantity_in_stock }} units {% if product.minimum_stock_level %} Min: {{ product.minimum_stock_level }} {% endif %}
KSh {{ product.unit_price|floatformat:2 }} Cost: KSh {{ product.cost_price|floatformat:2 }}
KSh {{ product.total_value|floatformat:2 }} {% if product.quantity_in_stock == 0 %} Out of Stock {% elif product.quantity_in_stock <= product.minimum_stock_level %} Low Stock {% else %} In Stock {% endif %}
No products found

Add your first product using the "Add Product" button.

{% if products.paginator.num_pages > 1 %} {% endif %}
{% endblock %}