11 lines
277 B
Python
11 lines
277 B
Python
"""Urlconf for app tag."""
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'tag'
|
|
|
|
urlpatterns = [
|
|
path('', views.TagListCreateView.as_view(), name='list-create'),
|
|
path('category/', views.TagCategoryListCreateView.as_view(), name='category-list-create'),
|
|
]
|