From 1f3a770d2547848590f39e9d9b9bdffeb94eec14 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Wed, 10 Oct 2018 16:06:47 -0400 Subject: Lab as a Service 2.0 See changes here: https://wiki.opnfv.org/display/INF/Pharos+Laas Change-Id: I59ada5f98e70a28d7f8c14eab3239597e236ca26 Signed-off-by: Sawyer Bergeron Signed-off-by: Parker Berberian --- src/templates/booking/steps/booking_meta.html | 66 +++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/templates/booking/steps/booking_meta.html (limited to 'src/templates/booking/steps/booking_meta.html') diff --git a/src/templates/booking/steps/booking_meta.html b/src/templates/booking/steps/booking_meta.html new file mode 100644 index 0000000..fa8f7a9 --- /dev/null +++ b/src/templates/booking/steps/booking_meta.html @@ -0,0 +1,66 @@ +{% extends "workflow/viewport-element.html" %} +{% load staticfiles %} + +{% load bootstrap3 %} + +{% block content %} + + + +{% bootstrap_form_errors form type='non_fields' %} +
+{% csrf_token %} +
+
+
+ {% bootstrap_field form.purpose %} + {% bootstrap_field form.project %} + {% bootstrap_field form.length %} +

Days:

0 + + {% bootstrap_field form.info_file %} +

You must provide a url to your project's INFO.yaml file if you are a PTL and you are trying to book a POD with multiple servers in it.

+
+
+
+
+ {% bootstrap_field form.users %} +
+ + {% buttons %} + + {% endbuttons %} +
+
+
+{% endblock content %} + +{% block onleave %} +var ajaxForm = $("#booking_meta_form"); +var formData = ajaxForm.serialize(); +console.log(formData); +req = new XMLHttpRequest(); +req.open("POST", "/wf/workflow/", false); +req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); +req.onerror = function() { alert("problem submitting form"); } +req.send(formData); +{% endblock %} -- cgit 1.2.3-korg