summaryrefslogtreecommitdiff
path: root/app/posts/urls
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf>2021-01-30 17:41:42 -0500
committerluxagraf <sng@luxagraf>2021-01-30 17:41:42 -0500
commite36adb590425ee6fb15a03ef690b6a279c49250a (patch)
tree533ee7cd8cb26bcca8e7a69a639ec0aacb8d8c9c /app/posts/urls
parentc7fee3786a0221fb3a7032491b0a2d512f0b27c4 (diff)
views: cleaned up some view code and streamlined breadcrumbs
Diffstat (limited to 'app/posts/urls')
-rw-r--r--app/posts/urls/guide_urls.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/posts/urls/guide_urls.py b/app/posts/urls/guide_urls.py
index 8927034..47cc3c5 100644
--- a/app/posts/urls/guide_urls.py
+++ b/app/posts/urls/guide_urls.py
@@ -12,25 +12,10 @@ urlpatterns = [
{'page':1},
name="guide-base"
),
- path(r'field-test/', include('posts.urls.review_urls', namespace='reviews')),
- re_path(r'^field-test/$', RedirectView.as_view(url='/field-tests/')),
- #path(r'field-tests/', include('posts.urls', namespace='review-list')),
- #path(r'review/', include('posts.review_urls')),
- re_path(r'^review/$', RedirectView.as_view(url='/guides/')),
path(
r'<str:topic>/',
views.GuideTopicListView.as_view(),
{'page':1},
name="guides-by-topic"
),
- #path(
- # r'<str:slug>',
- # views.EntryDetailView.as_view(),
- # name="detail"
- #),
- #re_path(
- # r'<int:page>/',
- # views.EntryList.as_view(),
- # name="list"
- #),
]