{% extends "alertprofiles/base.html" %} {% block tabcontent %} {% block subscriptions %} {% if subscriptions %}
{% for s in subscriptions %} {% endfor %}
Subscriptions
For profile {{ time_period.profile.name }}
Time period starting at {{ time_period.start }} for {{ time_period.get_valid_during_display }}
Watched filter group Alert address Dispatch Ignore resolved
{{ s.filter_group.name }} {{ s.alert_address }} {{ s.get_type_display|capfirst }} {{ s.ignore_resolved_alerts|yesno:"Yes,No" }} Edit

{% endif %} {% endblock subscriptions %} {% block subscription_form %}

{{ editing|yesno:"Edit,Add new" }} subscription

{% if not num_addresses %}

There are no available alert addresses.
You can go and add your first address to fix this problem.

{% endif %} {% if not num_filter_groups %}

There are no available filter groups.
You can go and add your first filter group to fix this problem.

{% endif %} {{ form.non_field_errors }} {{ form.filter_group.errors }} {{ form.alert_address.errors }} {{ form.type.errors }} {{ form.ignore_resolved_alerts.errors }}

Watch {{ form.filter_group }}, send alerts to {{ form.alert_address }} {{ form.type }} and ignore resolved alerts {{ form.ignore_resolved_alerts }}

{{ form.time_period }} {{ form.id }}

Dispatch time help
Immidiately Send the alert as soon as alertengine has processed it.
Daily at predefined time Send all matched alerts at the specified daily dispatch time.
Weekly at predefined time Send all matched alerts at the specified weekly dispatch time.
At end of timeperiod Send all matched alerts when the current timeperiod is over and a new one starts.
{% endblock subscription_form %} {% endblock %}