django-helpdeskmig/templates/helpdesk/ticket_cc_del.html
Ross Poulton f419d8e2d0 Issue #102
Add rudimentary CC: functionality on tickets, controlled by staff users. CC's 
can be e-mail addresses or users, who will receive copies of all emails sent 
to the Submitter. This is a work in progress.
2009-09-09 08:47:48 +00:00

15 lines
584 B
HTML

{% extends "helpdesk/base.html" %}{% load i18n %}
{% block helpdesk_title %}{% trans "Delete Ticket CC" %}{% endblock %}
{% block helpdesk_body %}{% blocktrans with cc.email_address as email_address %}
<h2>Delete Ticket CC</h2>
<p>Are you sure you wish to delete this email address (<em>{{ email_address }}</em>) from the CC list for this ticket? They will stop receiving updates.</p>
{% endblocktrans %}
{% blocktrans %}<p><a href='../../'>Don't Delete</a></p>
<form method='post' action='./'><input type='submit' value='Yes, Delete' /></form>
{% endblocktrans %}{% endblock %}