{% blocktranslate with digest_order=event.digest_order|intcomma total_events=issue.digested_event_count|intcomma ingested_at=event.ingested_at|date:"j M G:i T" %}Event {{ digest_order }} of {{ total_events }} which occured at {{ ingested_at }}{% endblocktranslate %}
{# div-in-div to match the spacing of the tabs, which is caused by the hover-thick-line; we use border-2 on both sides rather than border-b-4 to get the text aligned centeredly #}
Issue Key Info
{% translate "Issue" %} #
{{ issue.friendly_id }}
{% translate "State" %}
{% if issue.is_resolved %}
{% translate "Resolved" %}
{% for version in issue.get_fixed_at %}
{% if forloop.first %}{% translate "in" %}{% endif %}
{{ version|shortsha }}{% if not forloop.last %},{% endif %}
{% endfor %}
{% else %}
{% if issue.is_muted %}
{% translate "Muted" %}
{% if issue.unmute_after %}
until {{ issue.unmute_after|date:"j M G:i T" }}.
{% elif issue.get_unmute_on_volume_based_conditions %}
{% for vbc in issue.get_unmute_on_volume_based_conditions %}
until at least {{ vbc.volume }} events per {{ vbc.nr_of_periods }} {{ vbc.period }}{% if vbc.nr_of_periods != 1 %}s{% endif %}{% if forloop.last %} occur.{% else %} or {% endif %}
{% endfor %}
{% else %}
(unconditionally).
{% endif %}
{% else %}
{% translate "Open" %}
{% endif %}
{% endif %}
{% translate "Nr. of events" %}:
{{ issue.digested_event_count|intcomma }}
{% if issue.digested_event_count != issue.stored_event_count %}
total seen
{{ issue.stored_event_count|intcomma }} available
{% else %}
{% endif %}
{% if issue.digested_event_count > 1 %}
{% translate "First seen" %}:
{{ issue.first_seen|date:"j M G:i T" }}
{% translate "Last seen" %}:
{{ issue.last_seen|date:"j M G:i T" }}
{% else %}
{% translate "Seen at" %}:
{{ issue.first_seen|date:"j M G:i T" }}
{% endif %}
{% if issue.get_events_at_2 %}
Seen in releases:
{% for version in issue.get_events_at_2 %}
{{ version|shortsha }}{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% if tab != "tags" and issue.tags_summary %}
{% translate "Issue Tags" %}
{% for issuetags in issue.tags_summary %}
{{ issuetags.0.key.key }}:
{% for issuetag in issuetags %}
{{ issuetag.value.value }} ({{ issuetag.pct }}%){% if not forloop.last %},{% endif %}
{% endfor %}