{% extends "base.html" %} {% block title %}Alerts{% endblock %} {% block heading %}{% endblock %} {% block pageid %}alerts{% endblock %} {% load static %} {% block headcontents %} {{ block.super }} {% endblock %} {% block content %} {% if messages %}
{% for m in messages %}

{{ m }}

{% endfor %}
{% endif %}
Phone and E-mail Notifications

This is the central page for managing phone and email notifications. From here, you can create new contacts and notifications, edit or delete existing ones, and test and verify contacts.

The general procedure is:

More detailed documentation is provided here.

Note: email notificationss in ER15 and O4 will come from the gravitationalwave.services domain.

Contacts
{% if contacts %} {% for contact in contacts %} {% endfor %}
{% if contact.verified %} Test {% else %} {% endif %} Edit Delete {{ contact.description }} | {{ contact.display }} {% if contact.verified %}
Verified
{% else %}
Not verified
Verify {% endif %}
{% endif %} Create new contact


Notifications
{% if notifications %} {% for notification in notifications %} {% endfor %}
Edit Delete {{ notification.description }} | {{ notification.display }}
{% endif %} Create new notification {% endblock %}