blob: 882bd527838ce94ae9173818ddf561507a0af189 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from django.urls import path, re_path
from . import views
app_name = "taxonomy"
urlpatterns = [
path(
r'<slug>',
views.CategoryDetailView.as_view(),
name="cat-detail"
),
]
|