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

{{ _("Profile") }} {{ profile.public_id }}

{{ profile.release }}

{% 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.appliance_id %}

{% if profile.appliance_id.startswith("fountainnetworks-") %} {{ _("Get yours at") }} fountainnetworks.com {% elif profile.appliance_id.startswith("lightningwirelabs-") %} {{ _("Get yours at") }} lightningwirelabs.com {% end %} {{ profile.appliance }}

{% end %}

{{ _("Processor") }}

{{ profile.processor }}

{% if profile.processor.count >= 2 %}

{% if profile.processor.count == 2 %} {{ _("Dual-core processor") }} {% elif profile.processor.count == 4 %} {{ _("Quad-core processor") }} {% elif profile.processor.count == 8 %} {{ ("Octo-core processor") }} {% else %} {{ _("%s core processor") % profile.processor.count }} {% end %} {% if profile.processor.uses_ht() %} {% if profile.processor.vendor == "Intel" %} {{ _("using Intel Hyper-Threading Technology") }} {% else %} {{ _("with %s logical cores") % profile.processor.core_count }} {% end %} {% end %}

{% end %}
  • {{ _("Supported features") }}:
  • {% 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 %}
{% 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 %} {% if profile.system_vendor %}
{{ _("Vendor") }}
{{ profile.system_vendor }}
{% end %} {% if profile.system_model %}
{{ _("Model") }}
{{ profile.system_model }}
{% end %} {% end %} {% if profile.memory %}
{{ _("Memory") }}
{% if profile.memory <= (256 * 1024 ** 2) %} {% elif profile.memory >= 1024 ** 3 %} {% else %} {% end %} {{ format_size(profile.memory) }}
{% end %} {% if profile.storage %}
{{ _("System Storage") }}
{{ format_size(profile.storage) }}
{% end %} {% if profile.kernel %}
{{ _("Kernel") }}
{{ profile.kernel }}
{% end %} {% if profile.location %}
{{ _("Location") }}
{{ profile.location_string }}
{% end %} {% if profile.language %}
{{ _("Language") }}
{% module LanguageName(profile.language) %}
{% end %}
{% if profile.devices %} {% module FireinfoDeviceAndGroupsTable([d for d in profile.devices if d.is_showable()]) %}
{% end %}

{{ _("Signature images") }}

    {% for i in range(1) %}
  • {{ _(
  • {% end %}

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

{% end block %}