From 2ec0d7b9f5c1354977b821c6b06c24a3ffa13142 Mon Sep 17 00:00:00 2001 From: Gergely Csatari Date: Thu, 26 Oct 2023 10:33:28 +0300 Subject: Removing project content and adding a note that the development continues in GitHub Change-Id: I25c58a679dbf92b2367d826429b7cda936bf9f0e Signed-off-by: Gergely Csatari --- src/templates/base/dashboard/lab_detail.html | 165 --------------------------- 1 file changed, 165 deletions(-) delete mode 100644 src/templates/base/dashboard/lab_detail.html (limited to 'src/templates/base/dashboard/lab_detail.html') diff --git a/src/templates/base/dashboard/lab_detail.html b/src/templates/base/dashboard/lab_detail.html deleted file mode 100644 index 3d90a51..0000000 --- a/src/templates/base/dashboard/lab_detail.html +++ /dev/null @@ -1,165 +0,0 @@ -{% 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 -
-
-
-
-
-
-

Host Profiles

- -
-
-
- - {% for profile in hostprofiles %} - - - - - - {% endfor %} -
{{profile.name}}{{profile.description}}Profile
-
-
-
- -
-
-

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

Images

- -
-
-
- - - - - - - - {% for image in images %} - - - - - - - {% endfor %} -
NameOwnerFor Host TypeDescription
{{image.name}}{{image.owner}}{{image.host_type}}{{image.description}}
-
-
-
- -
-
-
-
-

Lab Hosts

- -
- -
- - - - - - - - - {% for host in hosts %} - - - - - {% if host.working %} - - {% else %} - - {% endif %} - - - {% endfor %} -
NameProfileBookedWorkingVendor
{{host.name}}{{host.profile}}{{host.booked|yesno:"Yes,No"}}YesNo{{host.vendor}}
-
-
-
- -
- - -{% endblock content %} - -- cgit 1.2.3-korg