8 lines
205 B
Python
8 lines
205 B
Python
|
from django.urls import path
|
||
|
from .views import HomePageView, AboutPageView
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("", HomePageView.as_view(), name="home"),
|
||
|
path("about/", AboutPageView.as_view(), name="about"),
|
||
|
]
|