mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
14 lines
388 B
HTML
14 lines
388 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}{{ _("Delete %(name)s", name=album.name) }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ _("Do you really want to delete this album?") }}
|
|
<form method="post">
|
|
<input type="submit" value="{{ _('Delete') }}">
|
|
</form>
|
|
<a class="button-href" href="/albums/{{ album.uuid }}">
|
|
<button id="cancel-deletion">{{ _("Cancel") }}</button>
|
|
</a>
|
|
|
|
{% endblock %} |