mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-30 03:43:46 +01:00
14 lines
474 B
HTML
14 lines
474 B
HTML
{% extends "helpdesk/base.html" %}
|
|
|
|
{% block helpdesk_title %}Delete Ticket{% endblock %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>Delete Ticket</h2>
|
|
|
|
<p>Are you sure you want to delete this ticket (<em>{{ ticket.title }}</em>)? All traces of the ticket, including followups, attachments, and updates will be irreversably removed.</p>
|
|
|
|
<p><a href='../'>No, Don't Delete It</a></p>
|
|
|
|
<form method='post' action='./'><input type='submit' value='Yes - Delete It' /></form>
|
|
{% endblock %}
|