{% extends "sentry/emails/base.html" %} {% load sentry_helpers %} {% load sentry_assets %} {% block bodyclass %}digest{% endblock %} {% block header %}
{{ block.super }} {% if not has_alert_integration %} Set up in Slack {% endif %}
{% endblock %} {% block content %}

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

{% 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.items %}
{% with rule_details=rules_details|get_item:rule.id snooze_alert_url=snooze_alert_urls|get_item:rule.id %} {% if snooze_alert %} Mute this alert {% endif %} This email was triggered by {{ rule_details.label }} {% endwith %}
{% for group, records in groups.items %} {% if forloop.counter0 < 10 %} {% endif %} {% endfor %} {% with groups.items|length|add:"-10" as remainder %} {% if remainder >= 1 %} {% endif %} {% endwith %}
Issue
{{ group.get_level_display }} {% include "sentry/emails/_group.html" %}
{{ records.0.datetime|date:"N j, Y, g:i:s a e" }} {% if show_replay_links and group.has_replays %} Session Replay View Replays {% endif %}
and {{ remainder }} more issue{{ remainder|pluralize }}
{% endfor %} {% endblock %}