{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
{% for lab in hostprofile.labs.all %}
- {{lab.name}}
{% endfor %}
|
{{hostprofile.ramprofile.first.amount}}G,
{{hostprofile.ramprofile.first.channels}} channels |
Arch: |
{{hostprofile.cpuprofile.first.architecture}} |
Cores: |
{{hostprofile.cpuprofile.first.cores}} |
Sockets: |
{{hostprofile.cpuprofile.first.cpus}} |
{% for intprof in hostprofile.interfaceprofile.all %}
Name: |
{{intprof.name}} |
Speed: |
{{intprof.speed}} |
|
{% endfor %}
Size: |
{{hostprofile.storageprofile.first.size}} GiB |
Type: |
{{hostprofile.storageprofile.first.media_type}} |
Mount Point: |
{{hostprofile.storageprofile.first.name}} |
{% endblock content %}