From 557758b188d58a2e00114be21a2e27864db3edea Mon Sep 17 00:00:00 2001 From: Caine Date: Thu, 2 Apr 2026 23:18:01 +0100 Subject: Pantry move/expiry edit + smart shopping list with summary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Move items between fridge↔freezer (freezer→fridge sets +7d or shelf life expiry, fridge→freezer clears expiry) - Inline expiry date editor on fridge items (📅 button) - Smart shopping list now shows recipe gaps (missing required slot ingredients) - Summary card shows breakdown: X staple restocks, Y expiring, Z recipe gaps --- kitchen/urls_htmx.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'kitchen/urls_htmx.py') diff --git a/kitchen/urls_htmx.py b/kitchen/urls_htmx.py index 390f6c1..5c11447 100644 --- a/kitchen/urls_htmx.py +++ b/kitchen/urls_htmx.py @@ -8,9 +8,15 @@ urlpatterns = [ path("shopping/", views_htmx.shopping_page, name="app-shopping"), path("log/", views_htmx.log_page, name="app-log"), - # HTMX partials + # HTMX partials — pantry path("pantry/add/", views_htmx.pantry_add, name="app-pantry-add"), path("pantry//delete/", views_htmx.pantry_delete, name="app-pantry-delete"), + path("pantry//move/", views_htmx.pantry_move, name="app-pantry-move"), + path("pantry//edit-expiry/", views_htmx.pantry_edit_expiry, name="app-pantry-edit-expiry"), + path("pantry//save-expiry/", views_htmx.pantry_save_expiry, name="app-pantry-save-expiry"), + path("pantry/cancel-edit/", views_htmx.pantry_cancel_edit, name="app-pantry-cancel-edit"), + + # HTMX partials — shopping path("shopping/generate/", views_htmx.shopping_generate, name="app-shopping-generate"), path("shopping//toggle/", views_htmx.shopping_toggle, name="app-shopping-toggle"), path("shopping/clear/", views_htmx.shopping_clear, name="app-shopping-clear"), -- cgit v1.2.3