{% for item in ["messages", "corrections"] %}
{{ item }}
{% endfor %} {% set unread = unread_reports() %}
reports{% if unread %}
{{ unread }}
{% endif %}
system
auto ai
{% set due = due_work() %} {% if due %}
{% if due.pending %}
{{ due.pending }} message{{ 's' if due.pending != 1 }} ready for review
{% endif %} {% if due.unreported %}
{{ due.unreported }} correction{{ 's' if due.unreported != 1 }} ready for a report
{% endif %}
Auto AI is off — turn it on to run them.
{% endif %}
{% block content %}{% endblock %}