2022-08-14 13:24:05 +02:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
2024-01-26 09:48:11 +01:00
|
|
|
{% block title %}{{ _("Delete %(name)s", name=album.name) }}{% endblock %}
|
2022-08-14 13:24:05 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2024-01-26 09:48:11 +01:00
|
|
|
{{ _("Do you really want to delete this album?") }}
|
2022-08-16 15:21:12 +02:00
|
|
|
<form method="post">
|
2024-01-26 09:48:11 +01:00
|
|
|
<input type="submit" value="{{ _('Delete') }}">
|
2022-08-16 15:21:12 +02:00
|
|
|
</form>
|
|
|
|
<a class="button-href" href="/albums/{{ album.uuid }}">
|
2024-01-26 09:48:11 +01:00
|
|
|
<button id="cancel-deletion">{{ _("Cancel") }}</button>
|
2022-08-16 15:21:12 +02:00
|
|
|
</a>
|
|
|
|
|
2022-08-14 13:24:05 +02:00
|
|
|
{% endblock %}
|