{% extends "base.html" %} {% block title %}{% if action=='new' %}Log New Incident{% else %}Edit {{incident.ref}}{% endif %}{% endblock %} {% block breadcrumb %}{% if action=='new' %}Log New Incident{% else %}Edit Incident{% endif %}{% endblock %} {% block content %}
Basic Information
{% if action=='edit' %}
{% endif %}
Impact & Location
Incident Narrative
{% if action=='edit' %}
{% endif %}
Submit
Cancel
Severity Guide
{% for s,desc in [ ('Critical','Total outage · All users affected'), ('High','Major degradation · Partial outage'), ('Medium','Isolated issue · Limited impact'), ('Low','Minor issue · Workaround available') ] %}
{{s}} {{desc}}
{% endfor %}
{% if action=='new' %}
Tip
Root cause and resolution can be added later when the incident is under investigation or resolved.
{% endif %}
{% endblock %}