{% extends "base.html" %} {% block title %}reports — defossil{% endblock %} {% block content %}

Reports ({{ reports|length }})

{{ unreported }} of {{ window }} corrections toward the next report — the server makes it on its own.{% if pending %} {{ pending }} messages still await review.{% endif %}

{% for r in reports %} {% set n = reviewed_counts[r.id] %} {% else %} {% endfor %}
#createdcovers messagescovers correctionscorrections msgscorr/msg words
#{{ r.id }}{% if not r.acknowledged %} new{% endif %} {{ r.created_at|dt }} #{{ r.first_message_id }} → #{{ r.last_message_id }} #{{ r.first_correction_id }} → #{{ r.last_correction_id }} {{ r.last_correction_id - r.first_correction_id + 1 }}{{ n }} {{ '%.2f' % ((r.last_correction_id - r.first_correction_id + 1) / n) if n else '—' }} {{ r.text.split()|length }}
No reports yet.
{% endblock %}