partitioncloud-server/partitioncloud/templates/albums/delete-album.html

14 lines
403 B
HTML
Raw Normal View History

2022-08-14 13:24:05 +02:00
{% extends 'base.html' %}
2024-01-25 16:22:04 +01:00
{% block title %}{{ _("Supprimer %(name)s", name=album.name) }}{% endblock %}
2022-08-14 13:24:05 +02:00
{% block content %}
2024-01-25 16:22:04 +01:00
{{ _("Êtes vous sûr de vouloir supprimer cet album ?") }}
<form method="post">
2024-01-25 16:22:04 +01:00
<input type="submit" value="{{ _('Supprimer') }}">
</form>
<a class="button-href" href="/albums/{{ album.uuid }}">
2024-01-25 16:22:04 +01:00
<button id="cancel-deletion">{{ _("Annuler") }}</button>
</a>
2022-08-14 13:24:05 +02:00
{% endblock %}