{% extends "admin_app.html" %} {% from "library.j2" import box, form_button, standard_button %} {% block content %}

{% trans circle_name=target_circle.name %}Delete circle {{ circle_name }}{% endtrans %}

{% trans %}Delete circle{% endtrans %}

{{ form.csrf_token }}

{% trans %}Are you sure you want to delete the following circle?{% endtrans %}

{% trans %}Name{% endtrans %}
{{ target_circle.name }}
{% call box("alert", _("Danger")) %}

{% trans %}The circle and the corresponding chat will be deleted, permanently and immediately upon pushing the below button. There is no way back!{% endtrans %}

{% endcall %}
{%- call standard_button("back", url_for(".edit_circle", id_=target_circle.id_), class="tertiary") %}{% trans %}Back{% endtrans %}{% endcall -%} {%- call form_button("delete", form.action_delete, class="primary danger") %}{% endcall -%}
{% endblock %}