summaryrefslogtreecommitdiff
path: root/app/posts/urls/essay_urls.py
blob: 3f0d7d76fcf12eebe0777f75fedd054fd44aa32b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from django.urls import path, re_path

from ..views import guide_views as views

app_name = "essays"

urlpatterns = [
    path(
        r'<str:slug>',
        views.PostDetailView.as_view(),
        name="detail"
    ),
    path(
        r'<str:slug>.txt',
        views.PostDetailViewTXT.as_view(),
        name="detail-txt"
    ),
    path(
        r'<int:page>/',
        views.EssayListView.as_view(),
        name="list"
    ),
    path(
        r'',
        views.EssayListView.as_view(),
        {'page':1}, 
        name="list"
    ),
]