{% 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 |
{% endfor %}
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 |
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|yesno:"Yes,No"}} |
{% if host.working %}
Yes |
{% else %}
No |
{% endif %}
{{host.vendor}} |
{% endfor %}
{% endblock content %}