diff options
author | luxagraf <sng@luxagraf> | 2021-03-21 10:34:58 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-03-21 10:34:58 -0400 |
commit | 5758fad11889a54ba877d4f3e8ba2d14b9aa42f4 (patch) | |
tree | 1c946914388343cc4b888ad574d9cc11c7002687 /config | |
parent | da19058f4582c71a57290a0223e196927a279fca (diff) |
lttr: removed /newsletter/ from the url path.
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 34141ca..e1ec3d4 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -38,7 +38,6 @@ urlpatterns = [ path(r'feed.xml', PostRSSFeedView(),name="feed"), path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}), path(r'links/', include('links.urls')), - path(r'newsletter/', include('lttr.urls')), path(r'jrnl/', include('posts.urls.jrnl_urls', namespace='jrnl')), #path(r'projects/', include('projects.urls')), path(r'walk/', include('locations.walk_urls')), @@ -66,6 +65,7 @@ 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()), |