diff options
author | luxagraf <sng@luxagraf> | 2021-03-24 14:22:04 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-03-24 14:22:04 -0400 |
commit | 5b86e4c986b39bc1027d371e9c108fa30ef3f052 (patch) | |
tree | 22798d834af453abed02f53742acab1785135f63 /config | |
parent | e807fb3c0e738b512acb68d230e4aae631d3c76d (diff) |
lttr: migrated to new post -> lttr -> send system.
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 19a8b43..e50ee56 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -44,6 +44,7 @@ urlpatterns = [ path(r'walks/', include('locations.walk_urls')), path(r'locations/', include('locations.urls')), #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/')), @@ -54,6 +55,8 @@ urlpatterns = [ 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')), #path(r'people/', include('people.urls')), path(r'dialogues/', include('sightings.urls', namespace='sightings')), @@ -64,7 +67,6 @@ urlpatterns = [ path(r'map/', include('locations.urls', namespace='map')), path(r'', HomePageList.as_view(), {'pk':1,}, name="homepage"), path(r'comments/', include('django_comments.urls')), - path(r'<slug>/', include('lttr.urls')), path(r'<slug>.txt', PageDetailTXTView.as_view()), path(r'<slug>', include('pages.urls', namespace='pages')), #path(r'<path>/<slug>/', PageDetailView.as_view()), |