diff options
Diffstat (limited to 'app/posts/urls/photo_essay_urls.py')
-rw-r--r-- | app/posts/urls/photo_essay_urls.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/posts/urls/photo_essay_urls.py b/app/posts/urls/photo_essay_urls.py new file mode 100644 index 0000000..e69f07c --- /dev/null +++ b/app/posts/urls/photo_essay_urls.py @@ -0,0 +1,24 @@ +from django.urls import path, re_path + +from ..views import photo_essay_views as views + +app_name = "photo_essay" + +urlpatterns = [ + path( + r'<str:slug>', + views.PhotoEssayDetailView.as_view(), + name="detail" + ), + path( + r'<int:page>/', + views.PhotoEssayListView.as_view(), + name="list" + ), + path( + r'', + views.PhotoEssayListView.as_view(), + {'page':1}, + name="list" + ), +] |