mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-02 12:53:20 +01:00
c762313e08
* Changes to a few translation blocks; this is still a WIP.
14 lines
572 B
HTML
14 lines
572 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Delete Ticket" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}{% blocktrans with ticket.title as ticket_title %}
|
|
<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>
|
|
{% endblocktrans %}{% endblock %}
|