2023-12-10 10:32:15 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Geocode to Commons: Reports{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="m-3">
|
|
|
|
<h1>Geocode reports</h1>
|
|
|
|
|
|
|
|
<p><a href="{{ url_for("index") }}">Back to index</a></p>
|
|
|
|
|
|
|
|
<p>Logging started {{ log_start_time.strftime("%a %d %b %Y") }}</p>
|
|
|
|
|
|
|
|
<p>Total lookups processed: {{ "{:,d}".format(log_count) }}</p>
|
|
|
|
|
2023-12-10 17:31:31 +00:00
|
|
|
<p>Average response time: {{ average_response_time | int }} milliseconds</p>
|
|
|
|
|
2023-12-10 10:32:15 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|