{% extends "base.html" %} {% block title %}Low Stock Report{% endblock %} {% block content %}

Low Stock Report

{% if current_branch %} Clear {% endif %}
{% for product in products %} {% empty %} {% endfor %}
ProductCategoryStockMinimum
{{ product.name }} {{ product.category|default:"-" }} {% if current_branch %}{{ product.branch_stock|default:0 }}{% else %}{{ product.stock_quantity }}{% endif %} {{ product.low_stock_alert }}
No low stock items.
{% endblock %}