partitioncloud-server/partitioncloud/templates/partition/delete.html

16 lines
469 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}{{ _("Delete %(name)s", name=partition.name) }}{% endblock %}</h1>
{% endblock %}
{% block content %}
{{ _("Do you really want to delete this score?") }}
<form method="post">
<input type="submit" id="delete-partition" value="{{ _('Delete') }}">
</form>
<a class="button-href" href="/partition/{{ partition.uuid }}/edit">
<button id="cancel-deletion">{{ _("Cancel") }}</button>
</a>
{% endblock %}