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

Waste Report

Clear

Total Waste

{{ total_waste_kg|kg }}

Total Cost

{{ total_cost|currency }}

Total Entries

{{ wastes|length }}
{% if category_stats %}

Waste by Category

{% for category, stats in category_stats.items() %} {% endfor %}
Category Count Total Weight Total Cost
{% if category == 'spoilage' %} 🦠 Spoilage {% elif category == 'shrinkage' %} 📉 Shrinkage {% elif category == 'damage' %} 💥 Damage {% elif category == 'expired' %} ⏰ Expired {% else %} ❓ Other {% endif %} {{ stats.count }} {{ stats.weight|kg }} {{ stats.cost|currency }}
{% endif %}

Waste Details

{% for waste in wastes %} {% else %} {% endfor %}
Date Weight (kg) Category Description Cost Recorded By
{{ 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 for this period.
{% endblock %}