{% extends 'base.html' %} {% block title %}Storekeeper Dashboard{% endblock %} {% block content %}
Daily stock tasks and alerts only.
Store: {{ assigned_location.name|default:'Unassigned (showing all stores)' }}
| Product | Location | Qty | Status |
|---|---|---|---|
| {{ row.product.name }} | {{ row.location.name }} | {{ row.quantity|floatformat:0 }} {{ row.product.unit }} | {% if row.quantity <= row.product.low_stock_alert %} Critical {% elif row.quantity <= row.product.low_stock_alert|add:5 %} Warning {% else %} Healthy {% endif %} |
| No stocked items. | |||