summaryrefslogtreecommitdiff
path: root/app/posts/review_urls.py
blob: f6a3908e702dc04f6f3cec383bdb295c758c3413 (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 . import views

app_name = "reviews"

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