mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 01:36:25 +01:00
13 lines
365 B
HTML
13 lines
365 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 href="/albums/{{ album['uuid'] }}"><button>Annuler</button></a>
|
||
|
{% endblock %}
|