- {% comment %} ----- Heading ----- {% endcomment %}
-
-
{{ incident.status_text|upper }}
- {% if incident.severity_text %}- {{ incident.severity_text|upper}} SEVERITY{% endif %}
-
-
- {% comment %} ----- Summary ----- {% endcomment %}
-
Summary
-
{% if incident.summary %}{{ incident.summary|unslackify|markdown_filter|safe }}{% endif %}
-
- {% if incident.impact %}- Impact:{{ incident.impact|unslackify|markdown_filter|safe }}
{% endif %}
- - Reporter:{{ incident.reporter.display_name }}
- {% if incident.lead %}- Lead:{{ incident.lead.display_name }}
{% endif %}
-
- - Start Time:{% if incident.start_time %}{{ incident.start_time }}{% endif %}
- - Report Time:{% if incident.report_time %}{{ incident.report_time }}{% endif %}
-
- {% if incident.is_closed %}
- - End Time:{{ incident.end_time }}
- - Duration:{{ incident.duration}}
- {% endif %}
-
- {% if user_stats %}
- - Participants:
-
- {% for stats in user_stats %}
- -
- {{ stats.user.display_name }} ({{stats.message_count}} messages)
-
- {% endfor %}
-
-
- {% endif %}
-
-
- {% comment %} ----- Actions ----- {% endcomment %}
-
Actions
- {% if actions %}
-
- {% for action in actions.all %}
- - {{ action.details|unslackify|markdown_filter|safe }}
- {% endfor %}
-
- {% endif %}
-
- {% comment %} ----- Timeline ----- {% endcomment %}
-
Timeline
- {% if incident.timeline_events %}
-
- {% for event in incident.timeline_events.all %}
-
-
- {{ event.timestamp|date:"H:i:s" }}
- {{ event.text|stringformat:'s'|unslackify|markdown_filter|safe }}
-
-
- {% endfor %}
-
- {% endif %}
-
-