blob: b1eec8676dddca942257ce44e4870619d0305118 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<div class="">
<p style="text-align:center;">Welcome to the Pharos Dashboard! To get started, select one of the options below:</p>
</div>
{% csrf_token %}
<style>
.wf_create{
display: inline-block;
text-align: center;
}
.wf_create_div{
text-align: center;
}
.hidden_form{
display: none;
}
.panel {
border: none;
}
.panels {
display: grid;
grid-template-columns: 33% 34% 33%;
}
</style>
<div class='wf_create_div'>
<button class="wf_create btn" onclick="cwf(0)">Create a Booking</button>
<button class="wf_create btn" onclick="cwf(1)">Create a Pod</button>
<button class="wf_create btn" onclick="cwf(2)">Configure a Pod</button>
<button class="wf_create btn" onclick="cwf(3)">Create a Snapshot</button>
{% if manager == True %}
<button class="wf_continue btn" onclick="continue_wf()">Finish Unfinished Business</button>
{% endif %}
</div>
<script type="text/javascript">
function cwf(type)
{
$.ajax({
type: "POST",
url: "/",
data: {"create":type},
beforeSend: function(request) {
request.setRequestHeader("X-CSRFToken",
$('input[name="csrfmiddlewaretoken"]').val()
);
}
}).done(function (data) {
window.location.replace("/wf/");
}).fail(function(jqxHR, textstatus) {
alert("Something went wrong...");});
}
function continue_wf()
{
window.location.replace("/wf/");
}
//success: window.location.replace("/wf/")
</script>
<div class="hidden_form" id="form_div">
<form method="post" action="" class="form" id="wf_selection_form">
{% csrf_token %}
<input type="hidden" id="landing_action">
<button type="submit" class="btn btn btn-success">
Confirm Edit
</button>
</form>
</div>
{% block vport_comm %}
{% endblock %}
{% endblock content %}
|