Add detail page for tags
This commit is contained in:
parent
7d700bea36
commit
d59fb154b6
6 changed files with 48 additions and 2 deletions
7
photologue_custom/urls.py
Normal file
7
photologue_custom/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.urls import path
|
||||
|
||||
from .views import TagDetail
|
||||
|
||||
urlpatterns = [
|
||||
path('tags/<slug:slug>/', TagDetail.as_view(), name='tag-detail'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue