blob: 5b7c6ccba3d8fe81c1b7ab3b9fd586bb35498dee (
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
|
{% extends 'commands.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_inventory %} active{% endblock %}
{% block nav_inventory_software %} active{% endblock %}
{% block content %}
<h1 class="m-5">{{_('Software inventory')}}</h1>
<h2 class="mb-3 mx-5">{{ _('Selected client:') }} {{ form.ips.data }}</h1>
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th scope="col">{{ _('Item') }}</th>
</tr>
</thead>
<tbody>
{% for item in software %}
<tr>
<td>{{ item }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
|