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

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

{% block nav_folder %} active{% endblock %}
{% block nav_folder_delete %} active{% endblock %}
{% block content %}

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

<table class="table">
    <tbody>
    {% for content in folder_content %}
    <tr>
	<th scope="row">{{ content['type'] }}</th>
	<td>{{ content['name'] }}</td>
    </tr>
    {% endfor %}
    </tbody>
</table>

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

{% endblock %}