Add detail page for tags

This commit is contained in:
Alexandre Iooss 2021-09-23 11:05:04 +02:00
parent 7d700bea36
commit d59fb154b6
6 changed files with 48 additions and 2 deletions

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