mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-29 19:33:20 +01:00
c97a255155
* Added superuser 'System settings' page with links to admin * Added ability to ignore e-mail addresses (using wildcards) from the e-mail parser * Added link to ignore email address from ticket details page (for superusers only) * Cleaned up report output by styling text & labels in the same way as tables in other views * Cleaned up dashboard lists to show text in place of tickets if no tickets are found * Added ability to sort in reverse order NOTE: REQUIRES A 'syncdb' TO CREATE THE EMAIL-IGNORE TABLES. No other DB changes were made.
15 lines
677 B
HTML
15 lines
677 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Delete Ignored E-Mail Address" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}{% blocktrans with ignore.email_address as email_address %}
|
|
<h2>Un-Ignore E-Mail Address</h2>
|
|
|
|
<p>Are you sure you wish to stop removing this email address (<em>{{ email_address }}</em>) and allow their e-mails to automatically create tickets in your system? You can re-add this e-mail address at any time.<?p>
|
|
{% endblocktrans %}
|
|
|
|
{% blocktrans %}<p><a href='../../'>Keep Ignoring It</a></p>
|
|
|
|
<form method='post' action='./'><input type='submit' value='Stop Ignoring It' /></form>
|
|
{% endblocktrans %}{% endblock %}
|