{% extends "base.html" %} {% block title %}{{ super() }}Settings / Notifications{% endblock %} {% block sidebar %} {% include "settings/menu.html" %} {% endblock %} {% block content %}

Notifications

Users can be notified when the status for a metric changes either by email or SMS.

Notifications are sent to users with a valid email or phone number and for instances for which notifications are activated.

Below you can test if notifications are correctly configured.

{% if not email_configured %}

SMTP is not configured yet

{% endif %}
{% if not sms_configured %}

Twilio is not configured yet

{% endif %}
{% endblock %}