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

Hello, {{ current_user.username }}.

Here's what's happening in your kitchen.

Today's Meals {{ today.strftime('%b %d') if today else '' }}
{% for meal_type in ['Breakfast', 'Lunch', 'Dinner'] %} {% set meal = meals|selectattr('meal_type', 'equalto', meal_type.lower())|first %}
{{ meal_type }}
{% if meal %} {{ meal.recipe.title }} {% if meal.is_cooked %}{% endif %} {{ meal.recipe.cuisine or '' }} {% else %}
Not planned
{% endif %}
{% endfor %}
Shopping List

{{ shopping_count }} item{{ 's' if shopping_count != 1 else '' }} needed

Pantry

{{ my_pantry_count }} item{{ 's' if my_pantry_count != 1 else '' }} tracked

Recipes

{{ my_recipes }} total available

{% endblock %}