9 lines
202 B
Python
Raw Normal View History

2023-01-01 19:51:38 +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"),
]