from django.urls import path from .views import TagDetail urlpatterns = [ path('tag//', TagDetail.as_view(), name='tag-detail'), ]