2008-05-07 11:04:18 +02:00
{% extends "helpdesk/base.html" %}{% load i18n %}
2008-04-17 07:46:55 +02:00
2008-05-07 11:04:18 +02:00
{% block helpdesk_title %}{% trans "Delete Ticket" %}{% endblock %}
2008-01-15 05:00:19 +01:00
2008-08-12 01:24:18 +02:00
{% block helpdesk_body %}{% blocktrans with ticket.title as ticket_title %}
2008-01-15 05:00:19 +01:00
< h2 > Delete Ticket< / h2 >
2008-08-12 01:24:18 +02:00
< 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 >
2008-08-28 11:06:24 +02:00
{% endblocktrans %}
2008-01-15 05:00:19 +01:00
2008-08-28 11:06:24 +02:00
{% blocktrans %}< p > < a href = '../' > No, Don't Delete It< / a > < / p >
2008-04-17 07:46:55 +02:00
2008-01-15 05:00:19 +01:00
< form method = 'post' action = './' > < input type = 'submit' value = 'Yes - Delete It' / > < / form >
2008-05-07 11:04:18 +02:00
{% endblocktrans %}{% endblock %}