{% extends 'commands.html' %} {% import "bootstrap/wtf.html" as wtf %} {% block nav_inventory %} active{% endblock %} {% block nav_inventory_hardware %} active{% endblock %} {% block content %}

{{_('Hardware inventory')}}

{{ _('Selected client:') }} {{ form.ips.data }}

{{ wtf.quick_form(form, action=url_for('action_hardware'), method='post', button_map={'refresh': 'primary'}, extra_classes='m-2')}} {% for item in hardware %} {% endfor %}
{{ _('Item') }} {{ _('Type') }}
{{ item['description'] }} {{ item['type'] }}
{% endblock %}