Show page render time on events list

This commit is contained in:
Edward Betts 2024-08-04 12:01:54 +08:00
parent 11bc0419b3
commit 15c5053e44
2 changed files with 4 additions and 0 deletions

View file

@ -150,6 +150,7 @@
{% for name, seconds in timings %}
<li>{{ name }} took {{ "%.1f" | format(seconds) }} seconds</li>
{% endfor %}
<li>Render time: {{ "%.1f" | format(render_time) }} seconds</li>
</ul>
</div>