mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-01-14 18:08:40 +01:00
17 lines
574 B
HTML
17 lines
574 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Delete Ticket Dependency" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}{% blocktrans %}
|
|
<h2>Delete Ticket Dependency</h2>
|
|
|
|
<p>Are you sure you wish to remove the dependency on this ticket?</p>
|
|
{% endblocktrans %}
|
|
|
|
<p><a href='../../'><button class="btn btn-primary btn-lg">{% trans "Don't Delete" %}</button></a></p>
|
|
|
|
<form method='post' action='./'>
|
|
<button class="btn btn-danger" type='submit'>{% trans "Yes, I Understand - Delete" %}</button>
|
|
{% csrf_token %}</form>
|
|
{% endblock %}
|