diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 | 
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 | 
| commit | d1e59579ca19454369d56a8c7525e109a86841e2 (patch) | |
| tree | 695f348acca3a32c97512685384da818a3ba5195 /apps/cultivation/urls.py | |
first commit
Diffstat (limited to 'apps/cultivation/urls.py')
| -rw-r--r-- | apps/cultivation/urls.py | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/cultivation/urls.py b/apps/cultivation/urls.py new file mode 100644 index 0000000..f56b4cf --- /dev/null +++ b/apps/cultivation/urls.py @@ -0,0 +1,12 @@ +from django.urls import path + +from . import views + +app_name = 'cultivation' +urlpatterns = [ +    path("", views.view_index, name="index"), +    path("cardio", views.view_cardio, name="cardio"), +    path("strength", views.view_strength, name="strength"), +    path("flexibility", views.view_flexibility, name="flexibility"), +    path("mind", views.view_mind, name="mind"), +]  | 
