diff options
author | luxagraf <sng@luxagraf.net> | 2024-03-10 09:31:05 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-03-10 09:31:05 -0500 |
commit | 21795671955fb4d675b740bba73b4d4f90d37739 (patch) | |
tree | 04e4ea4c05e2512876916669854b1ef5aa4f6e7c /config | |
parent | e491ff1a198303d36abc2dbd2b7e7a9760542d8c (diff) |
posts: added template option for photo posts, got rid of some things
Diffstat (limited to 'config')
-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 bf623df..9d0a507 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -48,9 +48,9 @@ urlpatterns = [ #path(r'expenses/', include('expenses.urls', namespace='expenses')), path(r'newsletter/', include('lttr.urls')), path(r'photos/', include('media.urls')), - path(r'film/', include('posts.urls.film_urls')), - re_path(r'^film/$', RedirectView.as_view(url='/films/')), - path(r'films/', include('posts.urls.film_urls', namespace='films')), + #path(r'film/', include('posts.urls.film_urls')), + #re_path(r'^film/$', RedirectView.as_view(url='/films/')), + #path(r'films/', include('posts.urls.film_urls', namespace='films')), 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')), |