geocode/templates/reports.html

20 lines
445 B
HTML

{% 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>
<p>Average response time: {{ average_response_time | int }} milliseconds</p>
</div>
{% endblock %}