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

Subscriber Details

{{ object.name }}

URL
{{ object.url }}
Notes
{{ object.notes }}

Subscriptions

{% for item in subscriptions %}

{{ item.name }}

Endpoint
{{ item.endpoint }}
Incidents
Browse Incidents in "{{ item.name }}"
{% empty %}

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

{% endfor %} Add notification subscription
{% endblock %}