steeldonutcollection/frontend/urls.py

11 lines
283 B
Python
Raw Normal View History

2022-05-05 15:40:57 +00:00
from django.urls import path
from .views import PlaylistView, VideoView
urlpatterns = [
path('', PlaylistView.as_view(), name="home"),
path('video/<slug:pk>/', VideoView.as_view(), name="video"),
path('playlist/<slug:pk>/', PlaylistView.as_view(), name="playlist"),
]