{%include "menu.html"%}

Shopping list for...

{% for rec, mult in recs %}
{{rec.title}} x{{mult}} (remove) {% endfor %}

Shopping List

{% for group, lst in data %}

{{group}}

{% for item, amt in lst %} {{item}} {{amount}}
{% endfor %} {% endfor %}

Pantry List

{% for group, lst in pantry %}

{{group}}

{% for item, amt in lst %} {{item}} {{amount}}
{% endfor %} {% endfor %}