{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block title %}{% trans "Puppet Inventory" %}{% endblock %} {% block heading %}{% trans "Puppet Inventory" %}{% endblock %} {% block content %}
{% blocktrans %} Click on a cell to filter by its value; click on a column header to sort; shift+click to sort using multiple columns {% endblocktrans %}
{% for host in hosts %} {% endfor %}
{% trans "Hostname" %} {% trans "Vendor" %} {% trans "Model" %} {% trans "CPUs" %} {% trans "Memory" %} {% trans "Arch" %} {% trans "BIOS Date" %} {% trans "BIOS Version" %} {% trans "Serial" %}
{{ host.name }} {{ host.manufacturer }} {{ host.productname }} {{ host.processorcount }} {{ host.memorysize }} {{ host.architecture }} {{ host.bios_date }} {{ host.bios_version }} {{ host.serialnumber }}
{% endblock %}