diff options
author | luxagraf <sng@luxagraf.net> | 2022-12-30 10:16:59 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2022-12-30 10:16:59 -0600 |
commit | 35ac29dfe6d563f99664976d9c6897799d2dadde (patch) | |
tree | 868616a0bbba799f501129885e0a6d1f3f8e2beb /config | |
parent | 60bf1a8b71750b4423f36730a8e1d2c6093cd06a (diff) |
posts: reverted to calling them essays and redid a few things to make it
easier to see what's going on
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index ebe878e..610d245 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -49,15 +49,15 @@ urlpatterns = [ #path(r'expenses/', include('expenses.urls', namespace='expenses')), path(r'newsletter/', include('lttr.urls')), path(r'photos/', include('media.urls')), - path(r'review/', include('posts.urls.review_urls')), - re_path(r'^review/$', RedirectView.as_view(url='/reviews/')), - path(r'reviews/', include('posts.urls.review_urls', namespace='review-list')), - path(r'guide/', include('posts.urls.guide_urls')), - re_path(r'^guide/$', RedirectView.as_view(url='/guides/')), - path(r'guides/', include('posts.urls.guide_urls', namespace='guide-list')), - path(r'notes/', include('posts.urls.notes_urls')), - re_path(r'^note/$', RedirectView.as_view(url='/notes/')), - path(r'notes/', include('posts.urls.notes_urls', namespace='notes-list')), + #path(r'review/', include('posts.urls.review_urls')), + #re_path(r'^review/$', RedirectView.as_view(url='/reviews/')), + #path(r'reviews/', include('posts.urls.review_urls', namespace='review-list')), + #path(r'guide/', include('posts.urls.guide_urls')), + #re_path(r'^guide/$', RedirectView.as_view(url='/guides/')), + #path(r'guides/', include('posts.urls.guide_urls', namespace='guide-list')), + path(r'essay/', include('posts.urls.essay_urls')), + re_path(r'^essay/$', RedirectView.as_view(url='/essays/')), + path(r'essays/', include('posts.urls.essay_urls', namespace='essay-list')), path(r'range/', include('posts.urls.range_urls', namespace='range')), path(r'friends/', include('posts.urls.friends_urls', namespace='friends')), path(r'book-notes/', include('books.urls')), |