photo26/photologue_custom/urls.py
2021-10-08 20:41:20 +02:00

8 lines
260 B
Python

from django.urls import path
from .views import TagDetail, GalleryDownload
urlpatterns = [
path('tag/<slug:slug>/', TagDetail.as_view(), name='tag-detail'),
path('gallery/<slug:slug>/download/', GalleryDownload.as_view(), name='gallery-download'),
]