-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 3.26 KB
/
index.html
File metadata and controls
80 lines (77 loc) · 3.26 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Cruncher Automatic Mode</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.344.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"
integrity="sha384-fYxN7HsDOBRo1wT/NSZ0LkoNlcXvpDpFy6WzB42LxuKAX7sBwgo7vuins+E1HCaw"
crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.22/css/jquery.dataTables.css">
<script src="/public/script.js?ver=1.0"></script>
</head>
<body><h1>Cruncher Automatic Mode Network</h1>
<center> To join the network: Copy and paste the following line
into the <b>IPython</b> console of <em>FLAC3D</em> 9.1.
</center>
<div class="alert alert-secondary" role="alert" style="font-family: monospace">
import six; six.exec_(six.moves.urllib.request.urlopen('{{WebsiteURL}}/public/bootstrap').read())
</div>
<div><h2 id="inqueue"></h2></div>
<div><h2 id="finished"></h2></div>
<div id="summary">Summary running...</div>
<table id="summary_table" class="table table-sm" style="font-size: small">
<thead>
<tr>
<th scope="col">Computer</th>
<th scope="col">Operating System</th>
<th scope="col">Running</th>
<th scope="col">Longest Running</th>
<th scope="col">Waiting</th>
<th scope="col">Longest Waiting</th>
<th scope="col">Error Count</th>
</tr>
</thead>
</table>
<div id="running"><h2>Jobs Running or Stopped </h2></div>
<table id="running_table" class="table table-sm" style="font-size: small">
<thead>
<tr>
<th scope="col">Computer</th>
<th scope="col">Start Time</th>
<th scope="col">File</th>
<th scope="col">Case ID</th>
</tr>
</thead>
</table>
<div id="waiting"><h2>Waiting Computers</h2></div>
<table id="waiting_table" class="table table-sm" style="font-size: small">
<thead>
<tr>
<th scope="col">Computer</th>
<th scope="col">Last Ping</th>
<th scope="col">Timestep</th>
</tr>
</thead>
</table>
<div id="errors"><h2>Errors</h2></div>
<table id="error_table" class="table table-sm" style="font-size: small">
<thead>
<tr>
<th scope="col">Computer</th>
<th scope="col">Start Time</th>
<th scope="col">End Time</th>
<th scope="col">Case ID</th>
<th scope="col">Error Message</th>
</tr>
</thead>
</table>
</body>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.js"></script>
<script>start();</script>
</html>