8 lines
260 B
Python
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'),
|
|
]
|