{% load i18n %}

📊 SnapAdmin — daily error digest

{{ total }} error{{ total|pluralize }} in the last {{ hours }} hours, {{ groups|length }} distinct group{{ groups|length|pluralize }}

{% for group in groups %}
{{ group.count }}× {{ group.exception_class }} ({{ group.status_code }})
{{ group.method }} {{ group.path|default:"—" }}
{% if group.message %}
{{ group.message|truncatechars:200 }}
{% endif %}
first {{ group.first_seen|date:"Y-m-d H:i" }} · last {{ group.last_seen|date:"Y-m-d H:i" }}
{% endfor %} {% if hidden_groups %}

… and {{ hidden_groups }} more group{{ hidden_groups|pluralize }} ({{ hidden_events }} event{{ hidden_events|pluralize }}) not shown — the digest is capped by SNAPADMIN_ERROR_DIGEST_MAX_GROUPS.

{% endif %}

Generated at {{ generated_at|date:"Y-m-d H:i:s e" }} — full details in the Error Events section of your admin panel.