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