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

Corrections ({{ total }})

{% if pending %}{{ pending }} message{{ 's' if pending != 1 }} pending review{% endif %}
category show unacknowledged all
{% for r in rows %} {% if loop.first or loop.previtem.typed_at|day != r.typed_at|day %} {% endif %} {% set asking = r.id in pending_explains %} {% if r.extra_explanation and not asking %} {% endif %} {% else %} {% endfor %}
timecorrectionwhy
{{ 'today' if r.typed_at|day == today else r.typed_at|day }}
{{ r.typed_at|hm }}
{% set info = catalog[r.category] %} {{ r.category }} {{ info.title }} · {{ info.kind }} {{ info.description }} {% if info.example %}{{ info.example }}{% endif %}
{{ r.original|worddiff(r.corrected) }}
{{ r.original }}
{{ r.corrected }}
{{ r.explanation }} asking…
Nothing here — every correction is acknowledged.

{% if page > 1 %}← prev{% endif %} page {{ page }} / {{ pages }} {% if page < pages %}next →{% endif %}

{% endblock %}