-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestPlan.html
59 lines (57 loc) · 2.35 KB
/
testPlan.html
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
<!DOCTYPE html>
<html lang="en">
<!-- Compiled and minified CSS -->
<link rel="icon" href="asset/icon/icon.png" type="image/icon">
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="UTF-8">
<title>Gemini - 9</title>
</head>
<body>
<div id="navbar" class="bg" style="background-image: url(./asset/img/navbar.jpg);"></div>
<div class="pagebase">
<div class="center">
<div class="base-table">
<div class="flex-col head" style="padding: 20px 20px 20px 0; height: 10%">
Science Plan > Test
</div>
<div class="whitebg border-radius padding-2"
style="justify-content: flex-start;height: 80vh; overflow: auto;">
<table class="table">
<thead class="thead-dark">
<tr>
<th class="col-th" scope="col">Plan ID</th>
<th class="col-th" scope="col">Plan Name</th>
<th class="col-th" scope="col">Creator</th>
<th class="col-th" scope="col">Funding</th>
<th class="col-th" scope="col">Objective</th>
<th class="col-th" scope="col">Start</th>
<th class="col-th" scope="col">End</th>
<th class="col-th" scope="col">Telescope</th>
<th class="col-th" scope="col">Target</th>
<th class="col-th" scope="col">Action</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
<div class="center" style="align-items: center" id="spinner">
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- Compiled and minified JavaScript -->
<script src="js/lib/jquery-3.5.1.min.js"></script>
<script src="js/lib/popper.min.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
<script type="text/javascript" src="js/lib/moment.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/api/api.js"></script>
<script src="js/page/testPlan.js"></script>
</html>