eventcally/project/templates/admin_unit/cancel_deletion.html
2024-02-10 18:09:19 +01:00

25 lines
545 B
HTML

{% extends "layout.html" %}
{% from "_macros.html" import render_field_with_errors, render_field %}
{% block content %}
<h1>{{ _('Cancel deletion') }} &quot;{{ admin_unit.name }}&quot;</h1>
<form action="" method="POST">
{{ form.hidden_tag() }}
<div class="card mb-4">
<div class="card-header">
{{ _('Organization') }}
</div>
<div class="card-body">
{{ render_field_with_errors(form.name, role="presentation", autocomplete="off") }}
</div>
</div>
{{ render_field(form.submit) }}
</form>
{% endblock %}