diff --git a/templates/macros.html b/templates/macros.html index c52531b..897b05b 100644 --- a/templates/macros.html +++ b/templates/macros.html @@ -135,7 +135,7 @@
{% if item.distance %} - {{ "{:.1f} km / {:.1f} miles".format(item.distance, item.distance / 1.60934) }} + {{ "{:,.0f} km / {:,.0f} miles".format(item.distance, item.distance / 1.60934) }} {% endif %}
{% endmacro %}