{% extends 'base.html' %} {% block title %}Calorie History{% endblock %} {% block content %}
View your calorie consumption history
| Date | Time | Item | Calories |
|---|---|---|---|
| {{ item.date|date:"M d, Y" }} | {{ item.time|time:"H:i" }} | {{ item.item_name }} | {{ item.calories|floatformat:0 }} cal |
No consumed items found in the selected date range.
{% endif %}