{% extends "base.html" %} {% block title %}Stock Management - QuantumQuickSales{% endblock %} {% block page_title %}Stock Management{% endblock %} {% block content %}
Low Stock Products
{% if low_stock_products %}
{% for product in low_stock_products %} {% endfor %}
Product ID Product Name Price (₹) Current Stock Status Actions
{{ product[0] }} {{ product[1] }} ₹{{ "%.2f"|format(product[2]) }} {% if product[3] <= 5 %} {{ product[3] }} {% elif product[3] <= 10 %} {{ product[3] }} {% else %} {{ product[3] }} {% endif %} {% if product[3] == 0 %} Out of Stock {% elif product[3] <= 5 %} Critical {% elif product[3] <= 10 %} Low {% endif %}
{% else %}
All products have sufficient stock!

No low stock alerts at this time.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}