pkmntrade.club/pages/urls.py
2025-02-26 00:17:06 -08:00

8 lines
206 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"),
]