diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-26 09:53:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-26 09:53:56 -0500 |
commit | ccf5541458db1cc4c1b46de95ee877ac67a0684a (patch) | |
tree | e9719ece7fdef9c89b666c2253015531a7e5e999 /config | |
parent | 28a613a8efda914eb5abb1d3d5551aa8be83a620 (diff) |
posts: added the concept of trips and a template for displaying them
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 8bcdf94..e684e3f 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -52,6 +52,7 @@ urlpatterns = [ 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'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')), |