{% extends "stasy-base-1.html" %} {% block title %}{{ _("Profile") }} {{ profile.public_id }}{% end block %} {% block body %}

{{ _("Operating system") }}

{{ _("Version") }} {{ profile.release }}
{{ _("Architecture") }} {{ profile.cpu.arch }}
{{ _("Kernel version") }} {{ profile.kernel }}
{% if profile.hypervisor %}

{{ _("Hypervisor") }}

{{ _("This machine is running in a virtual environment.") }}

{{ _("Vendor") }} {{ profile.hypervisor.vendor }}
{{ _("Type") }} {{ profile.hypervisor.type }}
{% else %}

{{ _("Hardware vendor") }}

{{ _("Vendor") }} {{ profile.vendor or _("Unknown") }}
{{ _("Model") }} {{ profile.model or _("Unknown") }}
{% end %}

{% if profile.network %}

{{ _("Network") }}

{{ _("Enabled network zones") }} {% for zone in ("GREEN", "RED", "BLUE", "ORANGE") %} {% if profile.network.has_zone(zone.lower()) %} {% if zone == "GREEN" %} {{ _(zone) }} {% elif zone == "RED" %} {{ _(zone) }} {% elif zone == "ORANGE" %} {{ _(zone) }} {% elif zone == "BLUE" %} {{ _(zone) }} {% end %} {% end %} {% end %}

{% end %}

{{ _("Hardware") }}

{% if profile.cpu.vendor != "ARM" %} {% end %}
{{ _("CPU") }}
{{ _("Vendor") }} {{ profile.cpu.vendor }}
{{ _("Model") }} {{ profile.cpu.model_string or _("Not available") }}
{{ _("Cores") }} {{ profile.cpu.count }}
{{ _("Speed") }} {{ profile.cpu.speed }} MHz {% if profile.cpu.speed != profile.cpu.bogomips %} (Bogomips: {{ profile.cpu.bogomips }}) {% end %}
{{ _("Supported features") }} {% if profile.cpu.capable_64bit %} {{ _("64 bit capable") }} {% end %} {% if profile.cpu.capable_pae %} {{ _("PAE capable") }} {% end %} {% if profile.cpu.capable_virt %} {{ _("VT-x/AMD-V") }} {% end %}
{{ _("Memory size") }} {{ format_size(profile.memory) }}
{{ _("System disk size") }} {{ format_size(profile.root_size) }}

{% if profile.devices %}

{{ _("Peripherial devices") }}

{{ modules.StasyDeviceTable(profile.devices) }}
{% end %}

{{ _("Signature images") }}

{{ _("Last update") }}: {{ locale.format_date(profile.updated) }}

{% end block %}