{% extends "base.html" %} {% block title %}Sraosha — Alerting profiles{% endblock %} {% block content %}
← Overview

Alerting profiles

Slack, email, and other notification channels.

New profile
{% for p in profiles %}

{{ p.name }}

{% if p.description %}

{{ p.description }}

{% endif %}
    {% for ch in p.channels %}
  • {{ ch.channel_type }}: {{ ch.config }}
  • {% else %}
  • No channels
  • {% endfor %}
Edit
{% else %}

No alerting profiles. Create one for contract and DQ notifications.

{% endfor %}
{% endblock %}