Files
old-cto-as-you-go/CTOAsYouGo/core/urls.py

11 lines
392 B
Python
Raw Normal View History

2023-07-01 10:42:40 +02:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('task/<int:task_id>', views.task_detail, name='task_detail'),
path('task/<int:task_id>/create_request', views.create_request, name='create_request'),
2023-07-05 11:02:15 +02:00
path('how_it_works', views.how_it_works, name='how_it_works'),
path('thankyou', views.thankyou, name='thankyou'),
2023-07-01 10:42:40 +02:00
]