blob: c1633c6e1336c4b9727c07a10d6654b17992d560 (
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
55
56
57
58
59
60
61
62
63
64
|
{% extends 'commands.html' %}
{% block content %}
<h1 class="m-5">{{_('Partition and Format')}}</h1>
<form class="form-inline" method="POST" id="setupForm">
<table class="table">
<thead class="text-center">
<tr>
<th>Partition Table</th>
<th>Total Disk Size (KB)</th>
</tr>
</thead>
<tbody data-target="partitons-fieldset" id="setupTable" class="text-center">
<tr>
{{ form.hidden_tag() }}
<td>{{ form.disk_type(class_="form-control") }}</td>
<td>{{ disk_size }}</td>
</tr>
</tbody>
</table>
<table class="table">
<thead class="text-center">
<tr>
<th>Partition</th>
<th>Type</th>
<th>Filesytem</th>
<th>Size (KB)</th>
<th>Format?</th>
<th colspan="2"></th>
</tr>
</thead>
<tbody data-target="partitons-fieldset" id="partitionsTable" class="text-center">
{% for partition in form.partitions %}
<tr data-toggle="fieldset-entry">
{{ partition.hidden_tag() }}
<td>{{ partition.partition(class_="form-control") }}</td>
<td>{{ partition.part_type(class_="form-control") }}</td>
<td>{{ partition.fs(class_="form-control") }}</td>
<td>{{ partition.size(class_="form-control") }}</td>
<td>{{ partition.format_partition(class_="form-control") }}</td>
<td>
<button class="btn btn-danger" onclick="RemovePartition(this)">
{{ _('Remove') }}
</button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</form>
<button class="btn btn-primary" data-target="#partitionsTable" onclick="AddPartition(this)">
{{ _('Add a new partition') }}
</button>
<button class="btn btn-success" form="setupForm">
{{ _('Accept') }}
</button>
{% endblock %}
|