1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
website-2020-spike/website/common/urls.py
2020-04-25 20:35:34 +01:00

9 lines
191 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("", views.HomepageView.as_view(), name="homepage"),
path("about/", views.AboutView.as_view(), name="about"),
]