website/www/usethesource/urls.py
Ben Sturmfels 905e5c918d
Add Use the Source mockup pages
This doesn't include any data models yet.
2023-10-25 00:00:14 +11:00

10 lines
270 B
Python

from django.urls import path
from . import views
app_name = 'usethesource'
urlpatterns = [
path('', views.landing_page, name='landing'),
path('candidate/', views.candidate_page, name='candidate'),
path('download/', views.download_page, name='download'),
]