mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-02 04:43:30 +01:00
f419d8e2d0
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.
15 lines
584 B
HTML
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 %}
|