summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-04-06 16:59:23 -0400
committerluxagraf <sng@luxagraf.net>2020-04-06 16:59:23 -0400
commit0fdb50984668da4f360a0408ba50cb43136d3de9 (patch)
tree6cb19a9661d0272a4c88aa9928891dbb242b5aa8 /config
parentd5b1ad3850c09154b783712762b6129ec0aa3f20 (diff)
changed post handling and fixed some bugs in templates
Diffstat (limited to 'config')
-rw-r--r--config/base_urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index ed73844..4c4e356 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -52,9 +52,9 @@ urlpatterns = [
path(r'locations/', include('locations.urls')),
path(r'expenses/', include('expenses.urls', namespace='expenses')),
path(r'photos/', include('photos.urls')),
- path(r'guide/', include('posts.guide_urls')),
- re_path(r'^guide/$', RedirectView.as_view(url='/guides/')),
- path(r'guides/', include('posts.guide_urls', namespace='guide-list')),
+ path(r'field-test/', include('posts.guide_urls')),
+ re_path(r'^field-test/$', RedirectView.as_view(url='/field-tests/')),
+ path(r'field-tests/', include('posts.guide_urls', namespace='guide-list')),
path(r'review/', include('posts.review_urls')),
re_path(r'^review/$', RedirectView.as_view(url='/guides/')),
path(r'essay/', include('posts.essay_urls')),