blob: 6b6e4d27be75381cda7baedb3570bd39ccf68649 (
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
|
{% extends 'commands.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block nav_inventory %} active{% endblock %}
{% block nav_inventory_hardware %} active{% endblock %}
{% block content %}
<h1 class="m-5">{{_('Hardware inventory')}}</h1>
<h2 class="mb-3 mx-5">{{ _('Selected client:') }} {{ form.ips.data }}</h1>
{{ wtf.quick_form(form,
action=url_for('action_hardware'),
method='post',
button_map={'refresh': 'primary'},
extra_classes='m-2')}}
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th scope="col">{{ _('Item') }}</th>
<th scope="col">{{ _('Type') }}</th>
</tr>
</thead>
<tbody>
{% for item in hardware %}
<tr>
<td>{{ item['description'] }}</td>
<td>{{ item['type'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
|