mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-15 19:30:59 +01:00
18 lines
777 B
HTML
18 lines
777 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Delete Ignored E-Mail Address" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>{% trans "Un-Ignore E-Mail Address" %}</h2>
|
|
|
|
<p>{% blocktrans with ignore.email_address as email_address %}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.{% endblocktrans %}</p>
|
|
|
|
<p><a href='../../'><button class="btn btn-primary btn-lg">{% trans "Keep Ignoring It" %}</button></a></p>
|
|
|
|
<form method='post' action='./'>
|
|
<button class="btn btn-danger" type='submit'>{% trans "Stop Ignoring It" %}</button>
|
|
{% csrf_token %}</form>
|
|
|
|
|
|
{% endblock %}
|