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