{% extends "base.html" %} {% load i18n %} {% block content %}
Subscriptions
{% for notifier in subscriptions %} {% endfor %}
{{notifier.content_object}}
{% csrf_token %}
Notifications
{% include "promgen/notifier_block.html" with object=notifiers show_edit=1 %}
{% for k, v in view.model.driver_set|dictsort:0 %} {% if k != "promgen.notification.user" %}
{% csrf_token %}
{{ v.help|urlize }}
{{ v.form.as_table }}
{% endif %} {% endfor %}
{% if user.is_staff %}
Debug
Discovery Plugins
    {% for plugin in discovery_plugins|dictsort:"name" %}
  • {{ plugin.name }} - {{ plugin.module_name }}
  • {% endfor %}
Notifier Plugins
    {% for notifier in notifier_plugins|dictsort:"name" %}
  • {{ notifier.name }} - {{ notifier.module_name }}
  • {% endfor %}
{% endif %} {% endblock %}