{% extends 'base.html' %} {% block title %}Storekeeper Station — Shiba Meals{% endblock %} {% block page_title %}Storekeeper{% endblock %} {% block content %}
| ID | Requested By | Type | For Date | Created | Items | Action |
|---|---|---|---|---|---|---|
| #{{ r.id }} | {{ r.chef_name }} | {{ r.req_type }} | {{ r.for_date }} | {{ r.created_at[:16] }} |
| Ingredient | Unit | In Stock | Reorder Level | Status |
|---|---|---|---|---|
| {{ i.name }} | {{ i.unit }} | {{ "{:.2f}".format(i.quantity or 0) }} | {{ i.reorder_level }} | {% if (i.quantity or 0) < 3 %}Critical {% elif (i.quantity or 0) < i.reorder_level %}Low — order soon {% else %}Good{% endif %} |
| Item | Unit | In Stock | Status |
|---|---|---|---|
| {{ i.name }} | {{ i.unit }} | {{ "{:.0f}".format(i.quantity or 0) }} | {% if (i.quantity or 0) < 2 %}Critical {% elif (i.quantity or 0) < 5 %}Low {% else %}Good{% endif %} |