2022-12-18 22:40:07 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block header %}
|
2024-01-25 16:22:04 +01:00
|
|
|
<h1>{% block title %}{{ _("Supprimer %(name)s", name=partition.name) }}{% endblock %}</h1>
|
2022-12-18 22:40:07 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-01-25 16:22:04 +01:00
|
|
|
{{ _("Êtes vous sûr de vouloir supprimer cette partition ?") }}
|
2022-12-18 22:40:07 +01:00
|
|
|
<form method="post">
|
2024-01-25 16:22:04 +01:00
|
|
|
<input type="submit" id="delete-partition" value="{{ _('Supprimer') }}">
|
2022-12-18 22:40:07 +01:00
|
|
|
</form>
|
2023-10-13 14:36:04 +02:00
|
|
|
<a class="button-href" href="/partition/{{ partition.uuid }}/edit">
|
2024-01-25 16:22:04 +01:00
|
|
|
<button id="cancel-deletion">{{ _("Annuler") }}</button>
|
2022-12-18 22:40:07 +01:00
|
|
|
</a>
|
|
|
|
|
|
|
|
{% endblock %}
|