mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
16 lines
469 B
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 %} |