diff options
Diffstat (limited to 'config/base_urls.py')
-rw-r--r-- | config/base_urls.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 96b1082..bf623df 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -54,9 +54,9 @@ urlpatterns = [ re_path(r'^trip/$', RedirectView.as_view(url='/trips/')), path(r'trip/', include('posts.urls.trip_urls')), path(r'trips/', include('posts.urls.trip_urls', namespace='trips')), - 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'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')), re_path(r'^guide/$', RedirectView.as_view(url='/guides/')), path(r'guides/', include('posts.urls.guide_urls', namespace='guides')), path(r'guide/', include('posts.urls.guide_urls')), @@ -65,9 +65,9 @@ urlpatterns = [ 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'how-to/', include('posts.urls.craft_urls')), - re_path(r'^how-to/$', RedirectView.as_view(url='/how-to/')), - path(r'how-tos/', include('posts.urls.craft_urls', namespace='craft')), + #path(r'how-to/', include('posts.urls.craft_urls')), + #re_path(r'^how-to/$', RedirectView.as_view(url='/how-to/')), + #path(r'how-tos/', include('posts.urls.craft_urls', namespace='craft')), path(r'book-notes/', include('books.urls')), #path(r'people/', include('people.urls')), path(r'dialogues/', include('sightings.urls', namespace='sightings')), |