diff options
author | luxagraf <sng@luxagraf.net> | 2019-10-07 15:27:00 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-10-07 15:27:00 -0400 |
commit | 4fec1159612fad17a7385ba8aadc4a4b165d5aa9 (patch) | |
tree | d413ea25e7c09efb29c4e80b8ffb3ca7c229a514 /app/taxonomy/urls.py | |
parent | 9cdfb6ec377fa534c1203c1af46662c2a1ff6f61 (diff) |
added new posts stuff and changed name of src posts
Diffstat (limited to 'app/taxonomy/urls.py')
-rw-r--r-- | app/taxonomy/urls.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/taxonomy/urls.py b/app/taxonomy/urls.py new file mode 100644 index 0000000..882bd52 --- /dev/null +++ b/app/taxonomy/urls.py @@ -0,0 +1,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" + ), +] |