Coverage for apps / legacy / urls.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-12 10:49 +0000

1"""URL configuration for legacy frontend.""" 

2 

3from django.urls import path 

4 

5from . import views 

6 

7app_name = "legacy" 

8 

9urlpatterns = [ 

10 path("", views.profile_selector, name="profile_selector"), 

11 path("pair/", views.device_pair, name="device_pair"), 

12 path("home/", views.home, name="home"), 

13 path("search/", views.search, name="search"), 

14 path("settings/", views.settings, name="settings"), 

15 path("all-recipes/", views.all_recipes, name="all_recipes"), 

16 path("favorites/", views.favorites, name="favorites"), 

17 path("collections/", views.collections, name="collections"), 

18 path("collections/<int:collection_id>/", views.collection_detail, name="collection_detail"), 

19 path("recipe/<int:recipe_id>/", views.recipe_detail, name="recipe_detail"), 

20 path("recipe/<int:recipe_id>/play/", views.play_mode, name="play_mode"), 

21] 

← Back to Dashboard