mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-25 09:23:39 +01:00
19 lines
685 B
HTML
19 lines
685 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 %}
|
|
|
|
|
|
<p><a href='../../'><button class="btn btn-primary btn-lg">{% trans "Don't Delete" %}</button></a></p>
|
|
|
|
<form method='post' action='./'>
|
|
<button class="btn btn-danger" type='submit'>{% trans "Yes I Understand - Delete" %}</button>
|
|
{% csrf_token %}</form>
|
|
|
|
{% endblock %}
|