{% extends 'base.html' %} {% block title %}Products{% endblock %} {% block content %}

Products

{% if low_stock_count %} ⚠ {{ low_stock_count }} low stock {% endif %}
⬇ Export CSV ➕ Add Product
Reset
{% for product in products %} {% empty %} {% endfor %}
Name SKU Category Stock Cost Price Selling Price Stock Value
{{ product.name }} {% if product.is_low_stock %} Low {% endif %} {{ product.sku|default:"—" }} {{ product.category.name|default:"—" }} {{ product.stock_quantity }} {{ product.unit }} {{ business.currency }} {{ product.cost_price|floatformat:0 }} {{ business.currency }} {{ product.selling_price|floatformat:0 }} {{ business.currency }} {{ product.stock_value|floatformat:0 }} View Edit Stock
No products yet. Add first product
{% include 'partials/pagination.html' with page_obj=products %} {% endblock %}