dashboard.html
1.11 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
{% extends "layout-with-topbar.html" %}
{% block content %}
<div id="paused-or-running" class="panel panel-default">
<div class="panel-heading">
<h3>Pause and Resume</h3>
</div>
<div class="panel-body">
{% if matrix.pause %}
<p> System paused. Click the button to resume it.</p>
<div class="pull-right">
<a href="/resume" class="btn btn-primary">Resume</a>
</div>
{% else %}
<p> System is running. Click the button to pause it</p>
<div class="pull-right">
<a href="/pause" class="btn btn-primary">Pause</a>
</div>
{% endif %}
</div>
</div>
<div id="terminate" class="panel panel-default">
<div class="panel-heading">
<h3>Process Termination</h3>
</div>
<div class="panel-body">
<p>Click the button to terminate (or restart) the gateway.</p>
<div class="pull-right">
<a href="/ask-terminate" class="btn btn-danger">Terminate / Restart</a>
</div>
</div>
</div>
{% endblock %}