{% extends "layouts/base.html" %} {% load static %} {% load incidents_get_language %} {% block title %}Incidents{% endblock %} {% block header %}{% include 'header.html' %}{% endblock %} {% block sidebar %}{% include 'sidebar.html' %}{% endblock %} {%block content %}

Incidents Details

{{ object.summary }}

Origin
{{ object.provider.name }}
{% if object.parent %}
Parent
{{ object.parent }} {% ifequal object.parent None %}{% else %}Trace{% endifequal %}
{% endif %}
Status
{{ object.status|get_status|safe }}
Impact
{{ object.impact|get_impact|safe }}
Type
{{ object.type }}
Language
{{ object.language|get_language }}
Description
{{ object.description }}
Occurred at
{{ object.occurrence_time }}
Detected at
{{ object.detection_time }}
{% if custom_values %}

Additional Information

{% for value in custom_values %}
{{ value.type.name }}
{{ value.value }}
{% endfor %}
{% endif %}

Attachments

    {% for item in attachments %}
  • {{ item.url }} ({{ item.format }})
  • {% empty %}
  • This incident has no attachemts
  • {% endfor %}
Add attachment
Incident Lead Ola Nordmann

Liaison

Name
{{ object.liaison.name }}
Email
{{ object.liaison.email }}
Phone
{{ object.liaison.phone }}
{% if object.is_our %} {% if object.is_notified %}
  Subscribers have been notified
{% else %}
Subscribers have not been notified Notify Subscribers
{% endif %} {% endif %}

Actions

{% if object.is_our %} Update Incident {% endif %} Derive Incident
{% endblock %}