{% load horizon i18n sizeformat getvalue %}
{% 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 }}
{% if host.personality == 'Worker' %}
{% trans "Max CPU Frequency " %}
{{ host.max_cpu_mhz_configured }}
{% trans "Max CPU Default " %}
{{ host.max_cpu_mhz_allowed }}
{% endif %}
{{ cpufunctions_table.render }}
{% else %}
{% trans "No CPU topology information available" %}
{% endif %}