mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-14 10:51:21 +01:00
27 lines
937 B
HTML
27 lines
937 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Delete Ticket Dependency" %}{% endblock %}
|
|
|
|
{% block helpdesk_breadcrumb %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'helpdesk:list' %}">{% trans "Tickets" %}</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'helpdesk:list' %}{{ ticket.id }}/">{{ ticket.queue.slug }}-{{ ticket.id }}</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">{% trans "Delete Ticket Dependency" %}</li>
|
|
{% 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 %}
|