mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-09 14:40:16 -04:00
10 lines
268 B
Python
Executable File
10 lines
268 B
Python
Executable File
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path ('', views.homepage, name="homepage"),
|
|
path ('create/', views.create, name="create"),
|
|
path ('<slug:slug>/', views.homepage),
|
|
path ('<slug:slug>/results/', views.results)
|
|
]
|