{% 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 %}
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|yesno:"Yes,No"}} |
Name |
Architecture |
Profile |
Booked |
Working |
{% for host in hosts %}
{{ host.name }}
|
{{ host.arch }}
|
{{ host.flavor.name }}
|
{% if host.allocation != null %}
Yes
{% else %}
No
{% endif %}
|
{% if host.allocation.reason == "maintenance" %}
No
{% else %}
Yes
{% endif %}
|
{% endfor %}
{% endblock content %}