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

Messages ({{ total }})

status source
{% for r in rows %} {% if loop.first or loop.previtem.typed_at|day != r.typed_at|day %} {% endif %} {% endfor %}
{{ 'today' if r.typed_at|day == today else r.typed_at|day }}
{{ r.typed_at|hm }} {{ r.source }} {{ r.status }} {% if r.status == 'reviewed' %}{% set n = correction_counts.get(r.id) %} {% if n %}{{ n }} correction{{ 's' if n != 1 }}{% endif %} {% endif %} {{ r.text|truncate(500) }}

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

{% endblock %}