blob: 205c450977dd45d4ef42f9cabe99758d716fd5e6 (
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 = "trips"
urlpatterns = [
path(
r'<str:slug>',
views.LocationDetail.as_view(),
name="location-detail"
),
path(
r'mapdata/',
views.MapDataList.as_view(),
name="mapdata"
),
re_path(r'data/(?P<id>\d+)/$', views.data_json),
path(
r'',
views.MapList.as_view(),
name="maplist"
),
]
|