summaryrefslogtreecommitdiff
path: root/app/sketches/urls.py
blob: 6554cefdbcba2e9a75ac105c8058b4ec61109c3f (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
30
31
32
33
34
35
36
37
38
39
from django.urls import path, re_path

from . import views

app_name = "sketches"

urlpatterns = [
    re_path(
        r'(?P<year>[0-9]{4})/$',
        views.SketchYearArchiveView.as_view(),
        name="list_year"
    ),
    path(
        r'', 
        views.SketchListView.as_view(),
        {'page':1},
        name="list"
    ),
    path(
        r'<int:page>/', 
        views.SketchListView.as_view(),
        name="list"
    ),
    path(
        r'<int:year>/<int:month>/<str:slug>.txt',
        views.SketchDetailViewTXT.as_view(),
        name="detail-txt"
    ),
    path(
        r'<int:year>/<int:month>/<str:slug>',
        views.SketchDetailView.as_view(),
        name="detail"
    ),
    path(
        r'<int:year>/<int:month>/',
        views.SketchMonthArchiveView.as_view(month_format='%m'),
        name="list_month"
    ),
]