test-farid/album/urls.py

11 lines
202 B
Python

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')
]