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

🍳 Cook History

{{ total }}
Total Cooks
{{ unique_recipes }}
Unique Recipes
{{ this_month }}
This Month
{% if not logs %}
📖

No cook logs yet. Open a recipe and log when you cook it!

{% else %}
{% for log, recipe in logs %}
{{ recipe.title }} {% if log.servings_made %}{{ log.servings_made }} servings{% endif %}
🗓️ {{ log.cooked_at.strftime('%B %d, %Y at %I:%M %p') if log.cooked_at else '—' }} {% if log.notes %}

{{ log.notes }}

{% endif %}
{% endfor %}
{% if total_pages > 1 %} {% endif %} {% endif %}
{% endblock %}