#{{ incident.id }} {{ incident.title }}
{% if status != False %}
{% include "./status_pill.html" with status=incident.status IncidentStatus=IncidentStatus only %}
{% endif %}
{% if incident.environment %}
{% include "./environment_pill.html" with environment=incident.environment only %}
{% endif %}
{{ incident.component.name }} ({{ incident.component.group.name }})
{% include "./priority_pill.html" with priority=incident.priority only %}
{{ incident.description|truncatechars:150 }}
{% if incident.updated_at != incident.created_at %}
Last event: {{ incident.latest_event_ts|naturaltime }}
{% endif %}
Opened: {{ incident.created_at|naturaltime }}