diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-06-27 10:07:41 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-06-27 10:07:41 +0200 |
commit | 5b0c3d3bf6ab35ca3ecb10914a350894e1e8cc7e (patch) | |
tree | 1a2cbbcdacd933904b6e034212a6253d5711f2eb /templates | |
parent | fc499a7b98a57a452b33b1d1310482840bef8551 (diff) |
properly format stop list; show distance on geo lookup
Diffstat (limited to 'templates')
-rw-r--r-- | templates/stops.html | 4 |
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> |