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

Incident Types List

{% for item in items %} {% empty %} {% endfor %}
Name Description Consequence
{{ item.name }} Delete {{ item.description }} {{ item.consequence }}
You have not added any incident types. In order to create incidents or for partners to subscribe to your incidents, you need to add at least one.
{% endblock %}