test-farid/album/urls.py

11 lines
202 B
Python
Raw Normal View History

2022-09-26 05:46:58 +06: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')
]