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

{{ counts|length }} new notification{{ 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 }} {% url 'sentry-group' group.organization.slug group.project.slug group.id as group_link %} {{ group.message_short|soft_break:40 }}

{{ group.title|soft_break:50 }} — {{ records.0.datetime|date:"N j, Y, P e" }}

and {{ remainder|length }} more issue{{ remainder|pluralize }}
{% endfor %}

Click to unsubscribe

{% endblock %}