blob: 8c50edb11cfcdd34a3eb5b941d7c42e6fda54cc4 (
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
|
{% extends 'commands.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% 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 %}
|