mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 09:46:25 +01:00
16 lines
412 B
HTML
16 lines
412 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}Supprimer {{ partition.name }}{% endblock %}</h1>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
Êtes vous sûr de vouloir supprimer cette partition ?
|
||
|
<form method="post">
|
||
|
<input type="submit" value="Supprimer">
|
||
|
</form>
|
||
|
<a class="button-href" href="/albums/{{ partition.uuid }}/edit">
|
||
|
<button id="cancel-deletion">Annuler</button>
|
||
|
</a>
|
||
|
|
||
|
{% endblock %}
|