geocode/templates/reports.html

18 lines
367 B
HTML
Raw Normal View History

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>
</div>
{% endblock %}