initial, migrated to new structure
This commit is contained in:
7
django_project/pages/urls.py
Normal file
7
django_project/pages/urls.py
Normal file
@ -0,0 +1,7 @@
|
||||
from django.urls import path
|
||||
from .views import HomePageView, AboutPageView
|
||||
|
||||
urlpatterns = [
|
||||
path("", HomePageView.as_view(), name="home"),
|
||||
path("about/", AboutPageView.as_view(), name="about"),
|
||||
]
|
Reference in New Issue
Block a user