Front page
This commit is contained in:
9
CTOAsYouGo/core/urls.py
Normal file
9
CTOAsYouGo/core/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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('why_it_works', views.why_it_works, name='why_it_works'),
|
||||
]
|
||||
Reference in New Issue
Block a user