{% block batch_report %}

Import Archive Log - {{ runtime }}

{{ command }}
{% if head_logs %}
Station data was synchronized to the index head - check the log here.

{% endif %}

Indexed Files

{% for site, files in sites.items %}

{% for file in files %} {% endfor %}
Filename Timestamp Warnings Errors Indexed?
{{ file.filename }} {{ file.index.begin }} {{ file.warnings|length }} {{ file.errors|length }} {% if file.archived_log %}Yes{% else %}No{% endif %}
{% endfor %}

Unindexed Files

{% for file, reason in unresolved %} {% endfor %}
Filename Reason
{{ file }} {{ reason }}
{% endblock batch_report %}