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

4 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-02-14 19:13 +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("home/", views.home, name="home"), 

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

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

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

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

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

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

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

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

20] 

← Back to Dashboard