django-helpdeskmig/templates/helpdesk/delete_ticket.html
Ross Poulton 14b2c59093 * Add ability to delete tickets completely
* Add model for file attachments, although currently commented out.
2008-01-15 04:00:19 +00:00

12 lines
472 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 %}