summaryrefslogtreecommitdiff
path: root/app/guides/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/guides/urls.py')
-rw-r--r--app/guides/urls.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/app/guides/urls.py b/app/guides/urls.py
deleted file mode 100644
index c91a5b5..0000000
--- a/app/guides/urls.py
+++ /dev/null
@@ -1,34 +0,0 @@
-from django.urls import path, re_path
-
-from . import views
-
-app_name = "guides"
-
-urlpatterns = [
- path(
- r'',
- views.GuideListView.as_view(),
- {'page': 1},
- name="list"
- ),
- path(
- r'<int:page>/',
- views.GuideListView.as_view(),
- name="list"
- ),
- path(
- r'<str:category>/<str:slug>',
- views.GuideDetailView.as_view(),
- name="detail"
- ),
- path(
- r'<str:category>/<str:slug>',
- views.GuideDetailViewTXT.as_view(),
- name="detail-txt"
- ),
- path(
- r'<str:category>',
- views.GuideCatListView.as_view(),
- name="list-cat"
- ),
-]