{% extends "base.html" %} {% block title %}{{ date }} – Nutrition Tracker{% endblock %} {% block content %}
← Back to Calendar

📅 {{ date }}

{% if intake | length > 0 %}

📊 Nutrition Summary

{% for p in intake %}
{{ p.value.amount | fmt_num }}{% if p.value.unit %} {{ p.value.unit }}{% endif %}
{{ p.name }}
{% endfor %}
{% if exercise | length > 0 %}

Exercise burned: {% for p in exercise %}{{ p.value.amount | fmt_num }}{% if p.value.unit %} {{ p.value.unit }}{% endif %} {{ p.name }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %}
{% endif %}

📋 Log

{% if items | length > 0 %} {% else %}

No entries for this day.

{% endif %}
{% endblock %}