{% extends 'base.html' %} {% import "bootstrap/wtf.html" as wtf %} {% block content %}

{{_('Hardware inventory')}}

Selected client: {{ form.ips.data }}

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