diff options
Diffstat (limited to 'config/base_urls.py')
-rw-r--r-- | config/base_urls.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 7314d1c..ebe878e 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -55,9 +55,9 @@ urlpatterns = [ 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'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'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')), |