{% extends "layouts/base.html" %} {% load static %} {% block title %} Send Notification - Stream Processor {% endblock %} {% block content %}

Send Notification

Send a notification through one of your configured channels.

Back to Notifications
{% csrf_token %}
Notification Details
{{ form.channel }} {% if form.channel.errors %}
{{ form.channel.errors.0 }}
{% endif %}
Select the notification channel to send through.
{{ form.message }} {% if form.message.errors %}
{{ form.message.errors.0 }}
{% endif %}
Enter the notification message content.
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
Set the notification priority level.
Cancel
{% endblock %}