mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 01:36:25 +01:00
14 lines
403 B
HTML
14 lines
403 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}{{ _("Supprimer %(name)s", name=album.name) }}{% 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 %} |