{% extends "sentry/emails/base.html" %} {% load sentry_helpers %} {% block bodyclass %}digest{% endblock %} {% block content %}

{{ counts|length }} new alert{{ counts|pluralize }} from {{ project.name }}

{% with start=start|date:"N j, Y, P e" end=end|date:"N j, Y, P e" %}
{{ start }}{% if start != end %} to {{ end }}{% endif %}
{% endwith %}
{% for rule, groups in digest.iteritems %}
{{ rule.label }}
{% for group, records in groups.items|slice:":10" %} {% endfor %} {% with groups.items|slice:"10:" as remainder %} {% if remainder %} {% endif %} {% endwith %}
Issue
{{ group.get_level_display }} {% include "sentry/emails/_group.html" %}
{{ records.0.datetime|date:"N j, Y, g:i:s a e" }}
and {{ remainder|length }} more issue{{ remainder|pluralize }}
{% endfor %} {% endblock %}