11 lines
392 B
Python
11 lines
392 B
Python
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'),
|
|
path('how_it_works', views.how_it_works, name='how_it_works'),
|
|
path('thankyou', views.thankyou, name='thankyou'),
|
|
]
|