summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/delete_center.html
blob: 5379a5888c40c852fe8ff8b2459e4aef7233a99f (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
{% extends 'scopes.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}

{% block nav_center %} active{% endblock %}
{% block nav_center_delete %} active{% endblock %}
{% block content %}

<h1 class="m-5">{{_('Delete center')}}</h1>
<p class="text-left mx-5">The following center 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 center is empty</td></tr>
{% endif %}
</tbody>
</table>

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

{% endblock %}