summaryrefslogtreecommitdiff
path: root/app/posts/urls/craft_urls.py
blob: 92f0f8753d0feca182adab5396d49e631b2b2997 (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 craft_views as views

app_name = "craft"

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