{% extends "layouts/base.html" %} {% block title %}Incident Type{% endblock %} {% block header %}{% include 'header.html' %}{% endblock %} {% block sidebar %}{% include 'sidebar.html' %}{% endblock %} {%block content %}

Incident Type Details

{{ object.name }}

Description
{{ object.description }}
Consequence
{{ object.consequence }}

Trigger Types

{% for item in triggers %} {% empty %} {% endfor %}
Name Description Comparators
{{ item.name }} Delete {{ item.description }} {{ item.comparators }}
There are currently no Trigger Types assosiated with {{ object.name }}
Add Trigger Type

Custom Fields

{% for item in custom_fields %} {% empty %} {% endfor %}
Name Description Type
{{ item.name }} Delete {{ item.description }} {{ item.type }}
There are currently no Custom Fields assosiated with {{ object.name }}
Add Custom Field
{% endblock %}