summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/software_list.html
blob: c3ad5db82903d0725f33a6a825553180acce0b89 (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 %}

<h2 class="mx-5 subhead-heading">{{_('Software inventory')}}</h2>

<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 %}