{% extends 'base.html' %} {% block content %}

Waste Management

Record Waste
{% for waste in wastes %} {% else %} {% endfor %}
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 }}

💡 About Waste Tracking

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.

{% endblock %}