Front page

This commit is contained in:
Senad Uka
2023-07-01 10:42:40 +02:00
parent 89a76e0e72
commit 6833976d9b
1702 changed files with 292138 additions and 0 deletions

9
CTOAsYouGo/core/urls.py Normal file
View 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'),
]