blob: 7e9c95fdc0512bd76e540686a7d93ec13c1262fd (
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
|
from django.urls import path, re_path, include
from django.views.generic.base import RedirectView
from ..views import trip_views as views
app_name = "trips"
urlpatterns = [
path(
r'<str:slug>',
views.TripDetailView.as_view(),
name="detail"
),
path(
r'<int:page>/',
views.TripListView.as_view(),
name="list"
),
path(
r'',
views.TripListView.as_view(),
{'page':1},
name="list"
),
]
|