summaryrefslogtreecommitdiff
path: root/food_project/urls.py
diff options
context:
space:
mode:
authorCaine <caine@jihakuz.xyz>2026-04-02 23:08:43 +0100
committerCaine <caine@jihakuz.xyz>2026-04-02 23:08:43 +0100
commitf7f9e7057c4f2593bb78df654c1b85cc6e59573f (patch)
tree59102c1f9e2b09ffb2bbfad8a7d64f1c3258561d /food_project/urls.py
parent3f9b951b662bbb48437199c3483395c2eca66b02 (diff)
Phase 4: HTMX frontend with dark palette
- 4 pages: Pantry, Recipes, Shopping List, Cook Log - HTMX-powered: add/delete pantry items, toggle shopping, generate smart list - Custom 13-colour palette from Lospec (dark bg, yellow accent) - Mobile-responsive - Whitenoise for static files in production - All routes under /app/ - API (/api/) stays internal, frontend (/app/) for browser use
Diffstat (limited to 'food_project/urls.py')
-rw-r--r--food_project/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/food_project/urls.py b/food_project/urls.py
index 8acbe51..a788823 100644
--- a/food_project/urls.py
+++ b/food_project/urls.py
@@ -21,4 +21,5 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('api/', include('kitchen.urls')),
path('api-auth/', include('rest_framework.urls')), # browsable API login
+ path('app/', include('kitchen.urls_htmx')), # HTMX frontend
]