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

Subscription Details

{{ object.name }}

Subscriber
{{ object.subscriber.name }}
Endpoint
{{ object.endpoint }}

Incident Types

{% for item in incidents %}

{{ item.name }}

Name
{{ item.name }}
Type
{{ item.type.name }}

Triggers

{% for trigger in item.get_triggers %} {% empty %} {% endfor %}
Type Method Threshold Comparator
{{ trigger.type }} {{ trigger.method }} {{ trigger.threshold }} {{ trigger.comparator }} Edit Delete
This notification incident has no triggers
Add Notification Trigger
{% empty %}

{{ object.name }} does not subscribe to any notifications

{% endfor %} Add incident type to subscription
{% endblock %}