diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-09-16 22:23:44 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-09-16 22:23:44 +0200 |
commit | 04c8d7672ac977257379c62be1833d3b3b8e8e7b (patch) | |
tree | 69935a74a0dde0c00b684b3a22b090ab50a62d96 /templates/journey.html.ep | |
parent | 434eb5a18dc51d6c9cf7de67fcff216a3f9a8b57 (diff) |
journey: show distances below 10km with 100m resolution (and <1km with 1m)
Diffstat (limited to 'templates/journey.html.ep')
-rw-r--r-- | templates/journey.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/journey.html.ep b/templates/journey.html.ep index d138126..f5eebfc 100644 --- a/templates/journey.html.ep +++ b/templates/journey.html.ep @@ -130,8 +130,8 @@ <%= numify_skipped_stations($journey->{skip_route}) %><br/> % } % if ($journey->{km_route} > 0.1) { - ca. <%= sprintf('%.f', $journey->{km_route}) %> km - (Luftlinie: <%= sprintf('%.f', $journey->{km_beeline}) %> km) + ca. <%= sprintf_km($journey->{km_route}) %> + (Luftlinie: <%= sprintf_km($journey->{km_beeline}) %>) % } % else { ? |