{% for zone in profile.network %}
{% if zone == "red" %}
{{ _("RED") }}
{% elif zone == "green" %}
{{ _("GREEN") }}
{% elif zone == "orange" %}
{{ _("ORANGE") }}
{% elif zone == "blue" %}
{{ _("BLUE") }}
{% end %}
{% end %}
{% if profile.virtual %}
{{ _("Hypervisor") }}
{% if profile.hypervisor == "VMWare" %}
{{ _("VMware") }}
{% elif profile.hypervisor is None %}
{{ _("Unknown") }}
{% else %}
{{ profile.hypervisor }}
{% end %}
{% elif not profile.appliance_id and profile.system %}
{{ _("System") }}
{% if profile.system_vendor %}
{{ profile.system_vendor }}
{% end %}
{% if profile.system_vendor and profile.system_model %}
‐
{% end %}
{% if profile.system_model %}
{{ profile.system_model }}
{% end %}
{% end %}
{% if profile.processor %}
{{ _("Processor") }}
{{ profile.processor }}
{% for cap, available in profile.processor.capabilities %}
{% if cap == "64bit" %}
{{ _("64 bit") }}
{% elif cap == "aes" %}
{{ _("AES-NI") }}
{% elif cap == "nx" %}
{{ _("NX") }}
{% elif cap == "pae" %}
{{ _("PAE") }}
{% elif cap == "rdrand" %}
{{ _("RDRAND") }}
{% elif cap == "virt" %}
{{ _("VT-x/AMD-V") }}
{% end %}
{% end %}
{% end %}
{% if profile.memory %}
{{ _("Memory") }}
{{ format_size(profile.memory) }}
{% end %}
{% if profile.storage %}
{{ _("Storage") }}
{{ format_size(profile.storage) }}
{% end %}
{% if profile.location %}
{{ _("Location") }}
{{ profile.location_string }}
{% end %}
{% if profile.language %}
{{ _("Language") }}
{{ format_language_name(profile.language) }}
{% end %}
{% if profile.devices %}
{% module FireinfoDeviceTable([d for d in profile.devices if d.is_showable()], embedded=True) %}
{% end %}