{% extends "base.html" %}
{% load staticfiles %}
{% block extrahead %}
{{block.super}}
{% endblock %}
{% block content %}
Lab Name: | {{lab.name}} |
Lab Location: | {{lab.location}} |
Lab Email: |
{{lab.contact_email}} |
{% if lab.contact_phone %}
Lab Phone: |
{{lab.contact_phone}} |
{% endif %}
Lab Status: |
{% if lab.status < 100 %}
Up |
{% elif lab.status < 200 %}
Temporarily Offline |
{% else %}
Offline Indefinitely |
{% endif %}
{% for profile in hostprofiles %}
{{profile.name}} |
{{profile.description}} |
{{profile.labs}} |
Profile |
{% endfor %}
Networking Capabilities
Expand
Block Size: (number of VLANs allowed per deployment) | {{lab.vlan_manager.block_size}} |
Overlapping Vlans Allowed (user can pick which VLANs they wish to use): |
{{lab.vlan_manager.allow_overlapping}} |
Name |
Owner |
For Host Type |
Description |
{% for image in images %}
{{image.name}} |
{{image.owner}} |
{{image.host_type}} |
{{image.description}} |
{% endfor %}
Name |
Profile |
Booked |
Working |
Vendor |
{% for host in lab.host_set.all %}
{{host.labid}} |
{{host.profile}} |
{{host.booked}} |
{% if host.working %}
{{host.working}} |
{% else %}
{{host.working}} |
{% endif %}
{{host.vendor}} |
{% endfor %}
{% endblock content %}