django-helpdeskmig/templates/helpdesk/delete_ticket.html
2008-04-17 05:46:55 +00:00

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 %}