Event {{ event.digest_order|intcomma }} of {{ issue.digested_event_count|intcomma }} which occured at {{ event.ingested_at|date:"j M G:i T" }}
{% endif %}
{% if is_event_page %}
Download
| JSON
| Plain
{% endif %}
{% if app_settings.USE_ADMIN and user.is_staff %}
{% if is_event_page %}
| Event Admin |
{% endif %}
Issue Admin
{% endif %}
{# bottom nav bar #}
{# the whole of the big tabbed view #}
{# RHS container for multiple stacked boxes #}
{# 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
Issue #
{{ issue.friendly_id }}
State
{% if issue.is_resolved %}
Resolved
{% for version in issue.get_fixed_at %}
{% if forloop.first %}in{% endif %}
{{ version|shortsha }}{% if not forloop.last %},{% endif %}
{% endfor %}
{% else %}
{% if issue.is_muted %}
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 %}
Open
{% endif %}
{% endif %}
Nr. of events:
{{ issue.digested_event_count|intcomma }}
{% if issue.digested_event_count > 1 %}
First seen:
{{ issue.first_seen|date:"j M G:i T" }}
Last seen:
{{ issue.last_seen|date:"j M G:i T" }}
{% else %}
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 %}