{% extends "base.html" %} {% block content %}
Description: {{ incident.description or '—' }}
Impact: {{ incident.impact or '—' }}
Affected: Servers: {{ incident.affected_servers or '—' }} · Services: {{ incident.affected_services or '—' }} · Customers: {{ incident.affected_customers or '—' }}
Summary: {{ rca.summary }}
Root Cause: {{ rca.root_cause }}
What went well: {{ rca.what_went_well }}
What went wrong: {{ rca.what_went_wrong }}
No RCA created yet.
{% endif %}Status: {{ incident.status.value }}
{% if current_user.has_permission('incidents.edit') %} {% endif %}Assigned To: {{ incident.assigned_to.full_name if incident.assigned_to else '—' }}
Incident Commander: {{ incident.incident_commander.full_name if incident.incident_commander else '—' }}
Detected: {{ incident.detected_at.strftime('%d %b %Y %H:%M') }}
Resolved: {{ incident.resolved_at.strftime('%d %b %Y %H:%M') if incident.resolved_at else '—' }}