{% extends "../base.html" %} {% block title %}{{ _("Profile %s") % profile.public_id }}{% end block %} {% block content %}

{{ _("Profile") }}

{{ profile.public_id }}
{{ _("Running %s") % profile.system.release }}
{{ _("Last update %s") % locale.format_date(profile.last_updated_at) }}
{% 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.is_virtual() %}
{{ _("Hypervisor") }}
{% if profile.hypervisor == "VMWare" %} {{ _("VMware") }} {% elif profile.hypervisor is None %} {{ _("Unknown") }} {% else %} {{ profile.hypervisor }} {% end %}
{% elif 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.system.storage %}
{{ _("Storage") }}
{{ format_size(profile.system.storage) }}
{% end %} {% if profile.location %}
{{ _("Location") }}
{{ profile.location_string }}
{% end %} {% if profile.system.language %}
{{ _("Language") }}
{{ format_language_name(profile.system.language) }}
{% end %}
{% if profile.devices %} {% module FireinfoDeviceTable([d for d in profile.devices if d.is_showable()], embedded=True) %} {% end %}
{{ _("Signature images") }}
{% end block %}