{% extends "top_level_base.html" %} {% load version_filters %} {% block extra_header_content %} {% spaceless %} {# Top systems capacity #} {% if infinibox_systems %}
Physical {{ total_physical_capacity}} Free {{ free_physical_space }}
Virtual {{ total_virtual_capacity}} Free {{ free_virtual_space }}
{% endif %} {{ block.super }} {% endspaceless %} {% endblock %} {% block content %} {% include "sidebar_top_level.html" %}
{# Top bar: Tabs and "Add System" button #} {% if systems %}
{% if infinibox_systems and infiniguard_systems %} InfiniBox ({{ infinibox_systems|length }}) InfiniGuard ({{ infiniguard_systems|length }}) {% elif infinibox_systems %}
InfiniBox ({{ infinibox_systems|length }})
{% elif infiniguard_systems %}
InfiniGuard ({{ infiniguard_systems|length }})
{% endif %}
{% endif %} {% if infinibox_systems %}
{% if add_hex_serial_column %} {% endif %} {% if add_hex_serial_column %} {% endif %} {% for system in infinibox_systems %} {% if add_hex_serial_column %} {% endif %} {% endfor %}
Name Model SerialSerial HexVersion Performance Physical Capacity Virtual Capacity
{{ system.name|upper }}
{% if system.enabled %} System GUI {% else %}   {% endif %}
{{ system.model|default:"" }} {{ system.serial }} {{ system.serial|stringformat:"x" }} {{ system.get_version_display }} {% include "system_status.html" %} {{ system.get_total_physical_capacity_display }}
{{ system.get_free_physical_space_display }}
{{ system.get_total_virtual_capacity_display }}
{{ system.get_free_virtual_space_display }}
{% endif %} {% if infiniguard_systems %}
{% if add_hex_serial_column %} {% endif %} {% if add_hex_serial_column %} {% endif %} {% for system in infiniguard_systems %} {% if add_hex_serial_column %} {% endif %} {% endfor %}
Name Model SerialSerial HexVersion Total Throughput Physical Capacity Data Reduction
{{ system.name|upper }}
{% if system.enabled %} System GUI {% else %}   {% endif %}
{{ system.model|default:"" }} {{ system.serial }} {{ system.serial|stringformat:"x" }} {{ system.get_version_display }} {% include "system_status.html" %} {{ system.get_total_physical_capacity_display }}
{{ system.get_free_physical_space_display }}
{{ system.get_data_size_pre_reduction }}
{{ system.get_data_size_post_reduction }}
{% endif %} {% if not systems %}

To start using InfiniMetrics, select a system to monitor.

{% endif %}
{% endblock %}