{% load horizon i18n sizeformat %} {% block main %} {% autoescape off %}
{% if host.cpus %}
{% trans "Processor Model: " %}
{{ host.cpu_model }}
{% trans "Processors: " %}
{{ host.nodes|length }}
{% trans "Physical Cores Per Processor: " %}
{{ host.physical_cores|get_value:0 }}
{% trans "Hyper-Threading: " %}
{{ host.hyperthreading }}
{{ cpufunctions_table.render }}
{% else %}
{% trans "No CPU topology information available" %}
{% endif %}
{% endautoescape %} {% endblock %}