17 lines
393 B
HTML
17 lines
393 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container text-center" style="height: 100vh">
|
|
<div class="row h-100 align-items-center">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p> Êtes vous sûr de vouloir supprimer la demande "{{ ticket.title }}" ? </p>
|
|
<button type="submit" class="btn btn-warning">Supprimer</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|