{% extends "base.html" %} {% block title %}{{ page.month_label }}{% endblock %} {% block content %}

Calorie Tracker

{{ page.month_label }}

Click any day to inspect all logged food entries.

Shortcuts: `Space` opens today, `?` opens keyboard help.

Open Today
← Month This Month Month → ← Year
Year →
{% if page.nav.show_current_month_link %} Today {% else %} Viewing current month {% endif %}
Sun
Mon
Tue
Wed
Thu
Fri
Sat
{% for cell in page.cells %} {% if cell.is_padding %} {% else %} {% if cell.is_future %}
{{ cell.date_text }} {{ cell.day_num }}

{{ cell.total }} cal

{{ cell.entry_label }}

{{ cell.weight_label }}

Future

{% else %}
{{ cell.date_text }} {{ cell.day_num }}

{{ cell.total }} cal

{{ cell.entry_label }}

{{ cell.weight_label }}

{% endif %} {% endif %} {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}