2008-10-25 00:52:34 +02:00
{% 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 >
2009-09-09 10:47:48 +02:00
< 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 >
2008-10-25 00:52:34 +02:00
{% endblocktrans %}
2010-09-04 08:57:28 +02:00
< p > < a href = '../../' > {% trans "Keep Ignoring It" %}< / a > < / p >
2008-10-25 00:52:34 +02:00
2013-11-25 16:51:14 +01:00
< form method = 'post' action = './' > < input class = "btn btn-primary" type = 'submit' value = '{% trans "Stop Ignoring It" %}' / > {% csrf_token %}< / form >
2010-09-04 08:57:28 +02:00
{% endblock %}