diff --git a/templates/index.html b/templates/index.html
index 399331d..6c452ec 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -125,12 +125,6 @@
Bristol Sunrise: {{ sunrise.strftime("%H:%M:%S") }} /
Sunset: {{ sunset.strftime("%H:%M:%S") }}
- Data gather took {{ "%.1f" | format(data_gather_seconds) }} seconds
- Stock market open/close took
- {{ "%.1f" | format(stock_market_times_seconds) }} seconds
- {% for name, seconds in timings %}
- {{ name }} took {{ "%.1f" | format(seconds) }} seconds
- {% endfor %}
Stock markets
@@ -194,6 +188,19 @@
{% endif %}
{% endfor %}
+
+
Page generation time
+
+ - Data gather took {{ "%.1f" | format(data_gather_seconds) }} seconds
+ - Stock market open/close took
+ {{ "%.1f" | format(stock_market_times_seconds) }} seconds
+ {% for name, seconds in timings %}
+ - {{ name }} took {{ "%.1f" | format(seconds) }} seconds
+ {% endfor %}
+
+
+
+