{% extends "alerts/ssr/base.html" %} {% block title %}New Alert - SSR{% endblock %} {% block content %}

Create New Alert

Standard Django Form

{% csrf_token %}
{{ form.type }}
{% if form.type.errors %}

{{ form.type.errors.0 }}

{% endif %}
{{ form.description }}
{% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{% endblock %}