summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2022-01-01 11:11:30 -0500
committerlxf <sng@luxagraf.net>2022-01-01 11:11:30 -0500
commit3fca752fb0613b8c2af2d94b9dca78fdee7a9d46 (patch)
treea1638cbae08def5756493fd2220fe3889c9a10f5
parent619b57a6ed3edb0970256fe20881abce9038bb67 (diff)
loc: fixed bug in new reference to template
-rw-r--r--app/locations/views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/locations/views.py b/app/locations/views.py
index 6550b20..7487a17 100644
--- a/app/locations/views.py
+++ b/app/locations/views.py
@@ -115,9 +115,10 @@ class TrackDetail(DetailView):
).order_by('ap_id', 'ap__apclass__kind').distinct("ap")
return context
+
class TrackList(PaginatedListView):
"""
Return list of Walks
"""
model = Track
- template_name = 'walk_list.html'
+ template_name = 'locations/walk_list.html'