aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/lfedge/booking
diff options
context:
space:
mode:
authorAdam Hassick <ahassick@iol.unh.edu>2021-03-16 14:18:31 -0400
committerAdam Hassick <ahassick@iol.unh.edu>2021-03-17 15:23:00 -0400
commitbabedf30038b453ea7d123c9bb744f4acb14e625 (patch)
treebb34d03e56f134941e85bd374b7c074e2c3727af /src/templates/lfedge/booking
parent8a902d357fa6eca07384d25fac32a6e0521a63e5 (diff)
Added LF Edge template overrides.
Signed-off-by: Adam Hassick <ahassick@iol.unh.edu> Change-Id: If119646eee67fb7e145c5e92e64fa4f28a947dbe
Diffstat (limited to 'src/templates/lfedge/booking')
-rw-r--r--src/templates/lfedge/booking/booking_table.html41
-rw-r--r--src/templates/lfedge/booking/quick_deploy.html28
2 files changed, 69 insertions, 0 deletions
diff --git a/src/templates/lfedge/booking/booking_table.html b/src/templates/lfedge/booking/booking_table.html
new file mode 100644
index 0000000..4afb4d2
--- /dev/null
+++ b/src/templates/lfedge/booking/booking_table.html
@@ -0,0 +1,41 @@
+{% load jira_filters %}
+
+
+<thead>
+<tr>
+ <th>Owner</th>
+ <th>Purpose</th>
+ <th>Project</th>
+ <th>Start</th>
+ <th>End</th>
+ <th>Operating System</th>
+ <th>Pod</th>
+</tr>
+</thead>
+<tbody>
+{% for booking in bookings %}
+ <tr>
+ <td>
+ {{ booking.owner.username }}
+ </td>
+ <td>
+ {{ booking.purpose }}
+ </td>
+ <td>
+ {{ booking.project }}
+ </td>
+ <td>
+ {{ booking.start }}
+ </td>
+ <td>
+ {{ booking.end }}
+ </td>
+ <td>
+ {{ booking.resource.get_head_node.config.image.os.name }}
+ </td>
+ <td>
+ {{ booking.resource.get_template_name }}
+ </td>
+ </tr>
+{% endfor %}
+</tbody>
diff --git a/src/templates/lfedge/booking/quick_deploy.html b/src/templates/lfedge/booking/quick_deploy.html
new file mode 100644
index 0000000..dac3815
--- /dev/null
+++ b/src/templates/lfedge/booking/quick_deploy.html
@@ -0,0 +1,28 @@
+{% extends "base/booking/quick_deploy.html" %}
+{% block opnfv %}
+{% endblock opnfv %}
+{% block form-text %}
+<p class="my-0">
+ Please select a host type you wish to book.
+ Only available types are shown.
+ More information can be found here:
+ <a href="https://wiki.lfedge.org/display/LE/Shared+Community+Lab">LF Edge Wiki</a>.
+ If something isn't working right, let us know <a href="mailto:{{contact_email}}"> here! </a>
+</p>
+{% endblock form-text %}
+{% block collab %}
+<div class="col-12 col-lg-4 my-2">
+ <div class="col border rounded py-2 h-100">
+ <label>Collaborators</label>
+ {{ form.users }}
+ </div>
+</div>
+{% endblock collab %}
+
+{% block image_script %}
+ <script type="text/javascript">
+ document.getElementById("id_image").disabled = true;
+ document.getElementById("id_image").style.display = 'none';
+ document.getElementById("id_image").previousElementSibling.style.display = 'none';
+ </script>
+{% endblock image_script %}