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

Shopping List

Week of {{ week_start.strftime('%B %d, %Y') }} {% if total %} ·  {{ checked }}/{{ total }} checked{% endif %}

{% if member_count and member_count > 1 %}

Combined from {{ member_count }} household members' plans

{% endif %}
This Week {% if current_user.is_authenticated %} {% if total %} {% endif %} {% endif %}{# end is_authenticated #}
{% if categories %} {% if total %}
{{ checked }} of {{ total }} items collected {{ (checked / total * 100)|int }}%
{% endif %}
{% for cat_name, items in categories %}
{% if cat_name == 'Meat & Poultry' %} {% elif cat_name == 'Seafood' %} {% elif cat_name == 'Dairy & Eggs' %} {% elif cat_name == 'Produce' %} {% elif cat_name == 'Pantry' %} {% elif cat_name == 'Spices & Herbs' %} {% else %}{% endif %} {{ cat_name }} {{ items|length }}
    {% for item in items %}
  • {% if item.recipe_sources %} {% endif %}
    {% if item.recipe_sources %}
    {{ item.recipe_sources }}
    {% endif %}
  • {% endfor %}
{% endfor %}
{% else %}

No shopping list yet for this week.

Add meals to your meal plan first, then click Regenerate.

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