summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/delete_room.html
blob: b4c360176b3d86e4a40230772ed30000c4e716d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% 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 %}

<h1 class="m-5">{{_('Delete room')}}</h1>

{% if children %}
<p class="text-left mx-5">The following room and its content will be deleted</p>
<table class="table table-hover mx-5">
<thead class="thead-light">
<tr>
<th colspan="2">
{% for x in ancestors %}
    {{x}}
    {% if not loop.last %}
     >
    {% endif %}
{% endfor %}
</th>
</tr>
</thead>
<tbody class="text-left">
{% if children %}
{% for type, elements in children.items() %}
    <tr>
        <th>{{ type }}</th>
        <td>
        {% for e in elements %}
            {{e}}
        {% endfor %}
        </td>
    </tr>
{% endfor %}
{% else %}
    <tr><td>This room is empty</td></tr>
{% endif %}
</tbody>
</table>
{% endif %}

{{ wtf.quick_form(form,
                  action=url_for('action_room_delete'),
                  method='post',
                  button_map={'submit': 'primary'},
                  extra_classes="mx-5") }}

{% endblock %}