test-farid/album/urls.py

11 lines
202 B
Python
Raw Normal View History

2022-09-25 23:46:58 +00:00
from django.contrib import admin
from django.urls import include, path
from album.views import HomePageView
app_name = 'album'
urlpatterns = [
path('', HomePageView.as_view(), name='homepage')
]