{% extends "base.html" %}{% block content %}

Incident #{{ row.id }}

▲ {{ severity_name(row.severity) }} {{ row.monitor }}/{{ row.grp }} · {{ row.entity_id }}{% if entity_attrs.display %} ({{ entity_attrs.display }}){% endif %} · {{ row.state }}

{% if row.state == 'open' %}
{% endif %} {% if trend_profile %}

View {{ trend_profile.title }} around this incident

{% endif %} {% if entity_attrs %}

Attributes

{% for k, v in entity_attrs.items() %}
{{ k }}
{{ v }}
{% endfor %}
{% endif %}

History

    {% for h in history %}
  1. {{ h.kind }} — {{ h.detail }}
  2. {% else %}
  3. No history
  4. {% endfor %}
{% endblock %}