{% extends "base.html" %} {% block title %}Dashboard — Menu Planner{% endblock %} {% block content %}

This Week's Plan

{{ week_start.strftime('%B %d') }} – {{ (dates[-1]).strftime('%B %d, %Y') }}

Edit Plan Shopping List
{{ plan | length }}
Meals Planned
{{ stat_map.get('favorited', 0) }}
Favorited Recipes
{{ stat_map.get('candidate', 0) + stat_map.get('favorited', 0) }}
Active Recipes
{{ 21 - (plan | length) }}
Open Slots
{% for d in dates %} {% endfor %} {% for mt in meal_types %} {% for d in dates %} {% set key = d.isoformat() + '_' + mt %} {% endfor %} {% endfor %}
{{ d.strftime('%a') }}
{{ d.strftime('%b %d') }}
{{ mt }} {% if key in plan %} {% set entry = plan[key] %}
{{ cuisine_emoji.get(entry.cuisine, '') }} {{ entry.recipe_name }}
{% else %} {% endif %}
View Favorites
🇮🇹 Italian Recipes
🇫🇷 French Recipes
{% endblock %} {% block scripts %} {% endblock %}