{% extends "base.html" %} {% load staticfiles %} {% block content %}

Available at

    {% for lab in hostprofile.labs.all %}
  • {{lab.name}}
  • {% endfor %}

RAM

{{hostprofile.ramprofile.first.amount}}G, {{hostprofile.ramprofile.first.channels}} channels

CPU

Arch: {{hostprofile.cpuprofile.first.architecture}}
Cores: {{hostprofile.cpuprofile.first.cores}}
Sockets: {{hostprofile.cpuprofile.first.cpus}}

Disk

Size: {{hostprofile.storageprofile.first.size}} GiB
Type: {{hostprofile.storageprofile.first.media_type}}
Mount Point: {{hostprofile.storageprofile.first.name}}

Interfaces

{% for intprof in hostprofile.interfaceprofile.all %} {% endfor %}
Name Speed
{{intprof.name}} {{intprof.speed}}
{% endblock content %}