diff options
| author | Ken D'Ambrosio <ken@claude> | 2026-05-25 01:02:59 +0000 |
|---|---|---|
| committer | Ken D'Ambrosio <ken@claude> | 2026-05-25 01:02:59 +0000 |
| commit | acfd92ed803e75bd02e291556bba48579add784d (patch) | |
| tree | 383eb38674da810fccdd89a9102ad84a1b9b75c7 /app/templates/base.html | |
| parent | b5f0c3ee2c3060dd9821d42f4e1bcbb87cbbee10 (diff) | |
Add per-user meal plans and household sharing
Each user now has their own meal plan and shopping list. Users can
form a household (invite by username, owner can remove members) so
that shopping list generation combines all household members' plans.
DB migration preserves existing data assigned to user id=1.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/templates/base.html')
| -rw-r--r-- | app/templates/base.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index b58ef64..6702474 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -40,6 +40,11 @@ <i class="bi bi-cart me-1"></i>Shopping List </a> </li> + <li class="nav-item"> + <a class="nav-link {% if request.endpoint == 'household' %}active{% endif %}" href="/household"> + <i class="bi bi-people me-1"></i>Household + </a> + </li> </ul> <ul class="navbar-nav ms-auto gap-1 align-items-center"> |
