mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-27 18:33:12 +01:00
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Ignore E-Mail Address" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>{% trans "Ignore E-Mail Address" %}</h2>
|
|
|
|
<p>{% blocktrans %}To ignore an e-mail address and prevent any emails from that address creating tickets automatically, enter the e-mail address below.{% endblocktrans %}</p>
|
|
|
|
<p>{% blocktrans %}You can either enter a whole e-mail address such as <em>email@domain.com</em> or a portion of an e-mail address with a wildcard, such as <em>*@domain.com</em> or <em>user@*</em>.{% endblocktrans %}</p>
|
|
|
|
<form method='post' action='./'>
|
|
|
|
<fieldset>
|
|
<dl>{% for field in form %}
|
|
<dt><label for='id_{{ field.name }}'>{{ field.label }}</label></dt>
|
|
<dd>{{ field }}</dd>
|
|
{% if field.errors %}<dd class='error'>{{ field.errors }}</dd>{% endif %}
|
|
{% if field.help_text %}<dd class='form_help_text'>{{ field.help_text }}</dd>{% endif %}
|
|
{% endfor %}</dl>
|
|
</fieldset>
|
|
|
|
<input class="btn btn-primary" type='submit' value='{% trans "Ignore E-Mail Address" %}' />
|
|
|
|
{% csrf_token %}</form>
|
|
|
|
{% endblock %}
|