blob: f105dd2c8c20402d72052b7a55160176e816134f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends 'base.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 %}
|