blob: f12496ee0cfecbe4483c4c838b81a5e9d77a13b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{% extends "workflow/viewport-element.html" %}
{% load staticfiles %}
{% load bootstrap4 %}
{% block content %}
{% bootstrap_form_errors form type='non_fields' %}
<form id="step_form" method="POST" class="form">
{% csrf_token %}
<div id="form_div" class="container-fluid">
<div class="row">
<div class="p-4 col">
{% bootstrap_field form.purpose %}
{% bootstrap_field form.project %}
{% bootstrap_field form.length %}
<span>Days: </span><output id="daysout">0</output>
<script>
document.getElementById("id_length").oninput = function() { daysout.value=this.value; }
document.getElementById("daysout").value = document.getElementById("id_length").value;
</script>
{% bootstrap_field form.info_file %}
<p>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.</p>
{% bootstrap_field form.deploy_opnfv %}
</div>
<div class="p-4 col">
<p>You may add collaborators on your booking to share resources with coworkers.</p>
{% bootstrap_field form.users label="Collaborators" %}
</div>
</div>
<div class="panel_wrap">
{% buttons %}
<button type="submit" class="btn btn-success d-none">Confirm</button>
{% endbuttons %}
</div>
</div>
</form>
{% endblock content %}
|