{% extends 'base.html' %} {% block title %}Finance — Shiba Meals{% endblock %} {% block page_title %}Finance{% endblock %} {% block content %}
| Name | Role | Pay Period | Amount | Daily | Weekly | Monthly |
|---|---|---|---|---|---|---|
| {{ u.name }} | {{ u.role.replace('_',' ') }} | {{ u.pay_period }} | KES {{ "{:,.0f}".format(u.pay_amount) }} | KES {{ "{:,.0f}".format(u.daily) }} | KES {{ "{:,.0f}".format(u.weekly) }} | KES {{ "{:,.0f}".format(u.monthly) }} |
| Float | Cash Declared | Till Exp. | Cash Drop | Total Collected |
|---|---|---|---|---|
| KES {{ "{:,.0f}".format(r.cp.float) }} | KES {{ "{:,.0f}".format(r.cp.declared) }} | KES {{ "{:,.0f}".format(r.cp.till_exp) }} | {% if r.cp.drop %}KES {{ "{:,.0f}".format(r.cp.drop) }}{% else %}pending EOD{% endif %} | KES {{ "{:,.0f}".format(r.tc) }} |
| Component | Source | Note | Amount |
|---|---|---|---|
| Ingredient Cost | Approved requisitions | Recipe-based reference prices | KES {{ "{:,.0f}".format(ing_cost) }} |
| {{ e.category }} | Expense log | {{ e.note }} | KES {{ "{:,.0f}".format(e.amount + e.tx_cost) }} |
| Total | KES {{ "{:,.0f}".format(ing_cost + other_total) }} | ||
| Date | Ingredient | Note | Amount |
|---|---|---|---|
| {{ r.date }} | {{ r.ing_name or '—' }} | {{ r.note }} | KES {{ "{:,.0f}".format(r.amount + r.tx_cost) }} |
| No receipts today. | |||