{% extends 'scopes.html' %} {% import "bootstrap/wtf.html" as wtf %} {% set sidebar_state = 'disabled' %} {% set btn_back = true %} {% block nav_room %} active{% endblock %} {% block nav_room_delete %} active{% endblock %} {% block content %}

{{_('Delete room')}}

{% if children %}

The following room and its content will be deleted

{% if children %} {% for type, elements in children.items() %} {% endfor %} {% else %} {% endif %}
{% for x in ancestors %} {{x}} {% if not loop.last %} > {% endif %} {% endfor %}
{{ type }} {% for e in elements %} {{e}} {% endfor %}
This room is empty
{% endif %} {{ wtf.quick_form(form, action=url_for('action_room_delete'), method='post', button_map={'submit': 'primary'}, extra_classes="mx-5") }} {% endblock %}