blob: dd09dc42fd2fd1097e5f3cac3967a86e14b8d265 (
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
|
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<div class="text-center">
{% if not request.user.is_anonymous %}
{% if not request.user.userprofile.ssh_public_key %}
<div class="alert alert-danger" role="alert">
Warning: you need to upload an ssh key under <a href="/accounts/settings">account settings</a> if you wish to
log into the servers you book
</div>
{% endif %}
{% else %}
{% endif %}
</div>
{% csrf_token %}
<div class="row">
<!-- About us -->
<div class="col-12 col-lg-6 mb-4">
<h2 class="border-bottom">About Us</h2>
{% block about_us %}
<p>Here is some information about us!</p>
{% endblock about_us %}
</div>
<!-- Get started -->
<div class="col-12 col-lg-6 mb-4">
<h2 class="border-bottom">Get Started</h2>
{% if request.user.is_anonymous %}
<h4 class="text-center">
To get started, please log in with your <a href="/accounts/login">Linux Foundation Jira account</a>
</h4>
{% else %}
{% block btnGrp %}
<p>To get started, book a server below:</p>
<a class="btn btn-primary btn-lg d-flex flex-column justify-content-center align-content-center border text-white p-4" href="/booking/quick/">
Book a Server
</a>
<p class="mt-4">PTLs can use our advanced options to book multi-node pods. If you are a PTL, you may use the options
below:
</p>
<div class="btn-group-vertical w-100">
<button class="btn btn-primary" onclick="create_workflow(0)">Book a Pod</button>
<button class="btn btn-primary" onclick="create_workflow(1)">Design a Pod</button>
<button class="btn btn-primary" onclick="create_workflow(2)">Configure a Pod</button>
</div>
{% endblock btnGrp %}
{% endif %}
</div>
<!-- Returning users -->
{% if not request.user.is_anonymous %}
{% block returningUsers %}
<div class="col-12 col-lg-6 offset-lg-6 mb-4 mt-lg-4">
<h2 class="ht-4 border-bottom">Returning Users</h2>
<p>If you're a returning user, some of the following options may be of interest:</p>
<div class="btn-group-vertical w-100">
<button class="btn btn-primary" onclick="create_workflow(3)">Snapshot a Host</button>
<a class="btn btn-primary" href="{% url 'account:my-bookings' %}">
My Bookings
</a>
{% if manager == True %}
<button class="btn btn-primary" onclick="continue_workflow()">
Resume Workflow
</button>
{% endif %}
</div>
</div>
{% endblock returningUsers %}
{% endif %}
</div>
<div class="hidden_form d-none" id="form_div">
<form method="post" action="" class="form" id="wf_selection_form">
{% csrf_token %}
</form>
</div>
{% endblock content %}
|