blob: 92b29622ab0e637a2f7ee403d934121fcacd67dd (
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
|
from django.urls import path, re_path
from . import views
app_name = "walks"
urlpatterns = [
path(
r'<str:slug>',
views.TrackDetailView.as_view(),
name="track-detail"
),
re_path(
r'^(?P<page>\d+)/$',
views.TrackListView.as_view(),
name="track-list"
),
re_path(
r'',
views.TrackListView.as_view(),
{'page':1},
name="track-list"
),
]
|