-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathindex.html
39 lines (39 loc) · 1.61 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Background Jobs Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://www.herokucdn.com/purple3/latest/purple3.min.css">
<script src="client.js" async></script>
</head>
<body class="bg-near-white">
<script type="text/template" id="job-template">
<div class="flex flex-column ma2">
<div class="flex justify-between mb2">
<div class='mt2 mb1'><span class="hk-label">Job ID:</span> {{id}}</div>
<div class='mt2 mb1'><span class="hk-label">State:</span> {{state}}</div>
</div>
<div class="w-100 br1 shadow-inner-1 bg-light-silver">
<span class="db h1 br1 {{color}}" style="width: {{progress}}%;"></span>
</div>
</div>
</script>
<div class="main-content flex flex-column justify-center items-center w-100 mt4">
<div class='br2 flex flex-column items-center pv3'>
<div class='f1 mt2 mb1'>Create long-running jobs</div>
<div class='flex mt2'>
<a href='#' id="add-job" class='f2 link purple ph2 pv1 ba b--purple br1 mr4'>Add Job</a>
<a href='#' id="clear" class='f2 link purple ph2 pv1 ba b--purple br1'>Clear</a>
</div>
</div>
<div id="job-summary" class="w-80 f3"></div>
<div class="h6 flex flex-column justify-end">
<div class="shadow-3 pa4 tc f3">
<span class="hk-label">Tip:</span> Jobs not running? Be sure to run <code class="pre">heroku ps:scale worker=1</code>
</div>
</div>
</div>
</body>
</html>