Phase 2+3: bulk pantry add, smart shopping list, recipe URL import

This commit is contained in:
Caine
2026-04-02 16:50:56 +01:00
parent da6cd28c3a
commit 27f91fb877
2 changed files with 379 additions and 1 deletions
+3
View File
@@ -19,4 +19,7 @@ urlpatterns = [
path("", include(router.urls)),
path("what-can-i-cook/", views.what_can_i_cook, name="what-can-i-cook"),
path("log-cook/", views.log_cook, name="log-cook"),
path("bulk-pantry-add/", views.bulk_pantry_add, name="bulk-pantry-add"),
path("generate-shopping-list/", views.generate_shopping_list, name="generate-shopping-list"),
path("import-recipe/", views.import_recipe_url, name="import-recipe"),
]