2022-12-18 22:40:07 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block header %}
|
2024-01-26 09:48:11 +01:00
|
|
|
<h1>{% block title %}{{ _("Delete %(name)s", name=partition.name) }}{% endblock %}</h1>
|
2022-12-18 22:40:07 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-01-26 09:48:11 +01:00
|
|
|
{{ _("Do you really want to delete this score?") }}
|
2022-12-18 22:40:07 +01:00
|
|
|
<form method="post">
|
2024-01-26 09:48:11 +01:00
|
|
|
<input type="submit" id="delete-partition" value="{{ _('Delete') }}">
|
2022-12-18 22:40:07 +01:00
|
|
|
</form>
|
2023-10-13 14:36:04 +02:00
|
|
|
<a class="button-href" href="/partition/{{ partition.uuid }}/edit">
|
2024-01-26 09:48:11 +01:00
|
|
|
<button id="cancel-deletion">{{ _("Cancel") }}</button>
|
2022-12-18 22:40:07 +01:00
|
|
|
</a>
|
|
|
|
|
|
|
|
{% endblock %}
|