{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Ignore E-Mail Address" %}{% endblock %} {% block helpdesk_body %}{% blocktrans %}

Ignore E-Mail Address

To ignore an e-mail address and prevent any emails from that address creating tickets automatically, enter the e-mail address below.

You can either enter a whole e-mail address such as email@domain.com or a portion of an e-mail address with a wildcard, such as *@domain.com or user@*.

{% endblocktrans %}
{% for field in form %}
{{ field }}
{% if field.errors %}
{{ field.errors }}
{% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% endfor %}
{% endblock %}