{% extends 'base.html' %} {% block content %}
Total Items

{{ total_products }}

Low Stock Alert

{{ low_stock_count }}

Inventory List

{% if active_filter %}{% endif %} {% if search_query %} {% endif %}
{% for p in products %} {% empty %} {% endfor %}
Product Name Price Total Qty Sold Current Stock Actions
{{ p.name }} Rs. {{ p.price_per_packet }} {{ p.total_quantity }} {{ p.sold_stock }} {% if p.current_stock <= 0 %}Out of Stock {% elif p.current_stock < 10 %}{{ p.current_stock }} (Low) {% else %}{{ p.current_stock }}{% endif %}
No products found.
{% if products.has_other_pages %} {% endif %}
{% endblock %}