{% extends 'django_forms_workflows/base.html' %} {% block title %}Notification Preferences - {{ site_name }}{% endblock %} {% block content %}

Notification Preferences

These are every workflow notification you are currently scheduled to receive because of your group memberships. Check a row to mute that specific notification.

{{ total_rules }} rule{{ total_rules|pluralize }} scheduled
{{ muted_count }} currently muted
{% if not workflow_groups %}
You are not a member of any approval groups that are wired up to notification rules. There is nothing to manage here.
{% else %}
{% csrf_token %}
Uncheck to receive normally. Check to mute. Preferences are per-rule, so muting one stage or event does not affect the others.
{% for group in workflow_groups %}
{{ group.form_name }} {{ group.rules|length }} rule{{ group.rules|pluralize }}
{% for entry in group.rules %} {% endfor %}
Mute Event Stage Why you receive this
{% if entry.rule.use_triggering_stage %} Triggering stage {% elif entry.rule.stage %} {{ entry.rule.stage.name }} {% else %} All stages {% endif %} {{ entry.reason }}
{% endfor %}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}