{% extends 'base.html' %} {% block content %}
| Date | Weight (kg) | Category | Description | Cost | Recorded By | Actions |
|---|---|---|---|---|---|---|
| {{ waste.date }} | {{ waste.weight_kg|kg }} | {% if waste.category == 'spoilage' %} 🦠 Spoilage {% elif waste.category == 'shrinkage' %} 📉 Shrinkage {% elif waste.category == 'damage' %} 💥 Damage {% elif waste.category == 'expired' %} ⏰ Expired {% else %} ❓ Other {% endif %} | {{ waste.description or '-' }} | {% if waste.total_cost > 0 %} {{ waste.total_cost|currency }} {% else %} - {% endif %} | {{ waste.creator.name }} | |
| No waste recorded yet. | ||||||
| Total | {{ (wastes|sum(attribute='weight_kg'))|kg }} | {{ (wastes|sum(attribute='total_cost'))|currency }} | ||||
Record all waste, spoilage, shrinkage, and damage to maintain accurate inventory. This helps you track where your inventory is going and identify areas for improvement.