{% extends "layout.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
Count: {{ g.api.machines | length }}
Count: {{ g.api.mediums | length }}
Operating System: {{ g.api.host.operating_system }} {{ g.api.host.os_version }}
Memory: {{ g.api.host.memory_available }}/{{ g.api.host.memory_size }} MB
Processors: {{ g.api.host.processor_count }} logical ({{ g.api.host.processor_core_count }} physical) @ {{ g.api.host.get_processor_speed(0) }} MHz
3D Acceleration: {{ g.api.host.acceleration_3d_available }}
{% for drive in g.api.host.host_drives | sort(attribute="drive_path") %}
Path: {{ drive.drive_path }}
Model: {{ drive.model }}
{% endfor %}
{% for network in g.api.host.network_interfaces %}
{{ network.name }}: {{ utils.split_pascal_case(network.interface_type) }}
IP Address: {{ network.ip_address }}
MAC Address: {{ network.hardware_address }}
Wireless: {{ network.wireless }}
{% endfor %}
DNS Servers: {{ ', '.join(g.api.host.name_servers) }}