forked from Radio-Zoom/mairlist-html-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (89 loc) · 4.55 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<html>
<!--
* index.html serving the GUI
*
* @package
* @license http://www.gnu.org/licenses/agpl.html AGPL Version 3
* @author Christian Meyer <info@dj-meggs.de>
* @copyright Copyright (c) 2017-2018 Christian Meyer (http://www.dj-meggs.de/)
*
-->
<head>
<meta charset="UTF-8" />
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
</head>
<body>
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<h2>Radio Zoom Control Panel S1</h2>
<h4>Aktueller Titel</h4>
<th><div id="streamTitle"> </div></th>
<link rel="stylesheet" type="text/css" href="stylesheet_mairlistCP.css"></link>
<table class="table condensed">
<tr>
<th></th>
<th><div>LIVE 1</div></th>
<th><div>LIVE 2</div></th>
<th><div>AUTOMATION</div></th>
</tr>
<tr>
<td></td>
<td><div class="checkbox enabled"><span id="toggle_wrapper1"><input id="toggle-event1" type="checkbox" data-toggle="toggle"></div></span></td>
<td><div class="checkbox enabled"><span id="toggle_wrapper2"><input id="toggle-event2" type="checkbox" data-toggle="toggle"></span></div></td>
<td></td>
</tr>
<tr>
<td></td>
<td><div id="onAIRstat1"></div></td>
<td><div id="onAIRstat2"></div></td>
<td><div id="onAIRstatAuto"></div></td>
</tr>
<tr>
<td></td>
<td><img id="live1ID" src=""/></td>
<td><img id="live2ID" src=""/></td>
<td><img id="autoID" src=""/></td>
</tr>
<tr>
<td><p class="text-right">Sendungsname/ Studio: </p></td>
<td><div id="sourceName"></div></td>
<td><div id="sourceName2"></div></td>
<td><div id="automName"></div></td>
</tr>
<tr>
<td><p class="text-right">Source IP: </p></td>
<td><div id="sourceIP"></div></td>
<td><div id="sourceIP2"></div></td>
<td><div id="automIP"></div></td>
<td></td>
</tr>
<td><p class="text-right">Mod ID: </p></td>
<td><div id="modID"> </div></td>
<td><div id="modID2"> </div></td>
<td><div id="modIDautom"> </div></td>
<tr>
<td><p class="text-right">Stream Start: </p></td>
<td><div id="streamStart"> </div></td>
<td><div id="streamStart2"> </div></td>
<td><div id="streamStartAutom"> </div></td>
</tr>
<tr>
<td><p class="text-right">Bitrate: </p></td>
<td><div id="bitrateSource"> </div></td>
<td><div id="bitrateSource2"> </div></td>
<td><div id="bitrateSourceAutom"> </div></td>
</tr>
<tr>
<td><p class="text-right">Titel: </p></td>
<td><div id="titel"> </div></td>
<td><div id="titel2"> </div></td>
<td><div id="titelAutom"> </div></td>
</tr>
</table>
<script type="text/javascript" src="mairlist.js"></script>
</body>
</html>