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

Lab Profile

{% if lab.contact_phone %} {% endif %} {% if lab.status < 100 %} {% elif lab.status < 200 %} {% else %} {% endif %}
Lab Name: {{lab.name}}
Lab Location: {{lab.location}}
Lab Email: {{lab.contact_email}}
Lab Phone: {{lab.contact_phone}}
Lab Status:
Up
Temporarily Offline
Offline Indefinitely

Networking Capabilities

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"}}

Lab Hosts

{% for host in hosts %} {% endfor %}
Name Architecture Profile Booked Working
{{ host.name }} {{ host.arch }} {{ host.flavor.name }} {% if host.allocation != null %} Yes {% else %} No {% endif %} {% if host.allocation.reason == "maintenance" %} No {% else %} Yes {% endif %}
{% endblock content %}