8 lines
205 B
Python
Raw Normal View History

2022-12-30 22:38:51 +01:00
from django.urls import path
from .views import HomePageView, AboutPageView
urlpatterns = [
path("", HomePageView.as_view(), name="home"),
path("about/", AboutPageView.as_view(), name="about"),
]