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

Household

{% if household %}

{{ household.name }}

{% endif %}
{% if not household %}
You're not in a household yet

Create one and invite family members.
Shopping lists will automatically combine everyone's meal plans.

{% else %}
Members {{ members|length }}
{% if is_owner %}
Invite Member

The user must already have an account. They'll join immediately and their meal plan will be included in your combined shopping list.

{% endif %}
{% if is_owner and members|length > 1 %}

Remove all other members before you can dissolve the household.

{% else %}
{% endif %}
{% endif %} {% endblock %}