summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-06-27 10:07:41 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-06-27 10:07:41 +0200
commit5b0c3d3bf6ab35ca3ecb10914a350894e1e8cc7e (patch)
tree1a2cbbcdacd933904b6e034212a6253d5711f2eb /templates
parentfc499a7b98a57a452b33b1d1310482840bef8551 (diff)
properly format stop list; show distance on geo lookup
Diffstat (limited to 'templates')
-rw-r--r--templates/stops.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/stops.html b/templates/stops.html
index b762958..3889b7e 100644
--- a/templates/stops.html
+++ b/templates/stops.html
@@ -9,7 +9,9 @@
<div class="content">
<ul class="stops">
{% for stop in stops %}
- <li><a href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a></li>
+ <li>
+ <a class="name" href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a>
+ </li>
{% endfor %}
</ul>
</div>