blob: 0dcd4c7b65a6084203c33421309bf70934824f45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends 'commands.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
<h1 class="m-5">{{_('Partition and Format')}}</h1>
{% for form in forms %}
{{ wtf.quick_form(form,
method='post',
form_type='inline',
extra_classes='mx-5 pb-3',
button_map={'modify': 'primary',
'delete': 'danger'}) }}
{% endfor %}
{% endblock %}
|