{% extends "_page.html" %} {%- block page_layout -%}no-sidebar{%- endblock %} {%- block subtitle -%} {{ ui.subtitle_item(_("Confirm Delete")) }} {{- super() }} {%- endblock %} {%- block primary_content_inner -%}

{{ _('Are you sure you want to delete organization - {name}?').format(name=group_dict.name) }}

{%- call ui.util.call(ui.form, method="POST") -%} {%- call ui.util.call(ui.form_actions) -%} {{ ui.button(_("Cancel"), href=h.url_for(group_dict.type ~ ".edit", id=group_dict.name)) }} {{ ui.submit(_("Confirm Delete"), style="danger", name="delete") }} {%- endcall %} {%- endcall %} {%- endblock %}