base.html
13.5 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<!DOCTYPE html>
<html lang="en">
<head>
{% load staticfiles %}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Control center for the SVOM French GFT">
<meta name="author" content="CNRS-IRAP">
<link rel="icon" type="image/png" href="../public/static/media/colibrifavicon.png" />
<title >Colibri Control Center</title>
<!-- Bootstrap core CSS -->
<link href={% static "bootstrap/css/bootstrap.css" %} rel="stylesheet">
<link href={% static "bootstrap/css/sb-admin.css" %} rel="stylesheet">
<link rel="stylesheet" href={% static "bootstrap/font-awesome/css/font-awesome.min.css" %}>
<!-- Page Specific CSS -->
<!-- <link rel="stylesheet" href="http://cdn.oesmith.co.uk/morris-0.4.3.min.css"> -->
<!-- JsTree -->
<link rel="stylesheet" href={% static "bootstrap/dist/themes/default/style.min.css" %}>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
{% block head %}
<style>
#title {
font-family: 'Montserra', sans-serif;
font-size: 50px;
}
</style>
{% endblock %}
</head>
<body>
<style>
#page-wrapper {
padding: 15px 60px;
}
#wrapper {
padding-left: 10%;
}
.side-nav {
margin-left: -200px;
left: 200px;
width: 125px;
}
a {
font-family: 'Montserra', sans-serif;
}
#fas {
size: 18px;
}
#profile
{
font-size: 17px;
}
#hour
{
color: black;
font-size: 14px;
}
#plc_state
{
color: black;
font-size: 18px;
}
#signout {
color: black;
}
.nav>li>a:focus, .nav>li>a:hover {
text-decoration: none;
background-color: transparent !important;
}
#topbar {
-webkit-transition: background-color 800ms linear;
-ms-transition: background-color 800ms linear;
transition: background-color 800ms linear;
height: 100%;
}
#text_globalmode {
font-size: 14px;
color: black;
}
</style>
{% load tags %}
{% get_level "USER_LEVEL_TAS" as USER_LEVEL_TAC %}
{% get_level "USER_LEVEL_OBSERVER" as USER_LEVEL_OBSERVER %}
{% get_level "USER_LEVEL_IE" as USER_LEVEL_IE %}
{% get_level "USER_LEVEL_OPERATOR" as USER_LEVEL_OPERATOR %}
{% get_level "USER_LEVEL_SUPEROPERATOR" as USER_LEVEL_SUPEROPERATOR %}
{% get_level "USER_LEVEL_PI" as USER_LEVEL_PI %}
{% get_level "USER_LEVEL_PI" as USER_LEVEL_SYSADMIN %}
<div id="wrapper">
<!-- Sidebar -->
<nav class="navbar navbar-inverse navbar-fixed-top navbar-expand-lg" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<img alt="" src="../public/static/media/colibrifavicon.png">
<a class="navbar-brand" href={% url "index" %} style="color: black;">Colibri Control Center</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- #f9ff93 #6b69f3-->
<div id="topbar" class="collapse navbar-collapse navbar-ex1-collapse navbar-dark bg-primary">
<ul class="nav navbar-nav side-nav navbar-dark bg-primary" id="navbar_list">
<li><a href="{% url "weather" %}">Weather</a></li>
{% if USER_LEVEL >= USER_LEVEL_IE %}
<li><a href="{% url "site" %}">State</a></li>
<li><a href="{% url "site" %}">Observatory</a></li>
{% else %}
<li><a href="{% url "site" %}">Observatory</a></li>
{% endif %}
{% if USER_LEVEL >= USER_LEVEL_IE %}
<li><a href="{% url "observation_status" %}">Tel & Inst</a></li>
{% endif %}
<li><a href="#">Webcams</a></li>
{% if USER_LEVEL >= USER_LEVEL_OBSERVER %}
<li><a href="{% url "proposal" %}">Proposal</a></li>
{% endif %}
<li><a href="{% url "requests_list" %}">Request</a></li>
<li><a href="{% url "alerts_list" %}">Alerts</a></li>
<li><a href="{% url "current_schedule" %}">Schedule</a></li>
<li><a href="#">Images</a></li>
<li><a href="{% url "system" %}">System</a></li>
</ul>
<ul class="nav navbar-nav navbar-right navbar-user navbar-expand-lg">
<li><a id="plc_state"></a></li>
<li><a class="nav-brand" id="hour">Sun elevation :</a></li>
<li><a class="nav-brand" id="day_night" ><img id="day_night_img"></a></li>
<li><a class="nav-brand" id="observatory_state" href="{% url "site" %}"><img id="obs_state_img"></a></li>
<li><a class="nav-brand" id="wind" href="{% url "weather" %}"><img id="wind_img"></a></li>
<li><a class="nav-brand" id="weather" href="{% url "weather" %}"><img id="weather_img"></a></li>
<li><a class="nav-brand" id="globalmode" style="color: black;"> <p id="text_globalmode" >{% global_mode request %} </p></a>
<li>
<a class="nav-brand" href="{% url "profile" %}" style="color: black;"><i id="profile" class="fas fa-cog "></i></a>
</li>
<li>
<a id="signout" href="{% url "user_logout" %}" ><i class="fa fa-power-off"></i> Log Out</a>
</li>
</ul>
<script>
var TOO_STRONG_WIND = 60; //Totally arbitrary values, just for demonstration
var MAX_CLOUD_VALUE = 1;
var REFRESH_ICONS_FREQUENCE_MILLISECONDS = 1000;
var MAX_RAIN_RATE = 10;
var check_change = true;
$( document ).ready(function() {
//get_hour();
//setInterval(function() {get_hour();}, 900);
function set_elev(sun_elev)
{
$("#hour").text("Sun elevation : " + sun_elev);
}
function change_color(elevation, elev_threshold)
{
var color = "";
if (elevation >= elev_threshold)
color = "#f9ff93";
else
color = "#6b69f3";
$("#topbar").css("background-color", color);
}
function info_plc(is_safe, mode, ack, timeout, max_plc_timeout)
{
var safe = "UNSAFE";
if (is_safe)
safe = "SAFE";
if (ack) {
ack = "ACK: OK";
if (!check_change)
window.location.reload(true);
check_change = true;
}
else
{
ack = "STAFF ACK: KO";
$("#plc_state").css("background-color", "red");
check_change = false;
}
$("#plc_state").text("PLC: " + mode + '\u00A0\u00A0\u00A0\u00A0\u00A0' + safe + '\u00A0\u00A0\u00A0\u00A0\u00A0' + ack);
$("#plc_state").css("color", "black");
if (timeout > max_plc_timeout)
{
$("#plc_state").text("Connection to PLC LOST");
$("#plc_state").css("color", "red");
}
}
ajax_request();
interval = setInterval(function() {ajax_request();}, REFRESH_ICONS_FREQUENCE_MILLISECONDS);
function ajax_request() {
$.get("{% url 'retrieve_env_navbar' %}", function (weather_status) {
if (weather_status)
{
var sunelev = parseFloat(weather_status[0]['sunelev']);
var max_sunelev = parseInt(weather_status[0]['max_sunelev']);
set_elev(sunelev);
change_color(sunelev, max_sunelev);
$("#text_globalmode").text(weather_status[0]["pyros_mode"]);
var _img_day_night = document.createElement('img');
if (sunelev >= max_sunelev)
_img_day_night.src ="{% static 'media/rising_sun.png' %}";
else
_img_day_night.src ="{% static 'media/moon.png' %}";
_img_day_night.width = 22;
_img_day_night.height = 22;
_img_day_night.id ="day_night_img";
_img_day_night.alt="html5";
$("#day_night_img").replaceWith(_img_day_night);
var _img = document.createElement('img');
_img.width = 18;
_img.height = 18;
_img.id ="obs_state_img";
if (parseInt(weather_status[0]["plc_timeout"]) > parseInt(weather_status[0]["max_plc_timeout"]))
_img.src = "{% static 'media/observatory_off.png' %}";
else if (weather_status[0]["sitewatch_global_status"] === "OK")
_img.src = "{% static 'media/observatory.png' %}";
else
_img.src = "{% static 'media/observatory_red.png' %}";
_img.alt = "html5";
$("#obs_state_img").replaceWith(_img);
var _img = document.createElement('img');
_img.width = 18;
_img.height = 18;
_img.id ="weather_img";
if (parseInt(weather_status[0]["plc_timeout"]) > parseInt(weather_status[0]["max_plc_timeout"]))
_img.src = "{% static 'media/rain_no_plc.png' %}";
else if(parseInt(weather_status[0]['fields']['rain']) > MAX_RAIN_RATE)
_img.src = "{% static 'media/rain.png' %}";
else if (parseInt(weather_status[0]['fields']['cloud']) > MAX_CLOUD_VALUE)
_img.src = "{% static 'media/cloud.png' %}";
else
_img.src = "{% static 'media/sun.png' %}";
_img.width = 18;
_img.height = 18;
_img.alt = "html5";
$("#weather_img").replaceWith(_img);
var _im = document.createElement('img');
_im.width = 18;
_im.height = 18;
_im.id="wind_img";
if (parseInt(weather_status[0]["plc_timeout"]) > parseInt(weather_status[0]["max_plc_timeout"]))
_im.src = "{% static 'media/wind_no_plc.png' %}";
else if (parseInt(weather_status[0]['fields']['wind']) >= TOO_STRONG_WIND)
_im.src = "{% static 'media/wind.png' %}";
else
_im.src= "{% static 'media/windsock_nowind.png' %}";
$("#wind_img").replaceWith(_im);
info_plc(weather_status[0]["is_safe"], weather_status[0]["plc_mode"],
weather_status[0]["ACK"], parseInt(weather_status[0]["plc_timeout"]),
parseInt(weather_status[0]["max_plc_timeout"]) );
}
}, 'json')
.fail(function () {
console.log('Ajax error: GET request failed\n');
})
}});
</script>
</div><!-- /.navbar-collapse -->
</nav>
<div id="page-wrapper">
<div class="row">
<center><h2 id="title">{% block title %} {% endblock %}</h2></center>
</div>
{% block content %}
{% endblock %}
</div><!-- /#page-wrapper -->
</div><!-- /#wrapper -->
<!-- Javascript function refreshing weather icons on the navbar -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="{% static "/js/moment.min.js" %}"></script>
<script src="{% static "/js/moment-timezone.min.js" %}"></script>
<script src="{% static "/js/moment-timezone-with-data.min.js" %}"></script>
<script src={% static "bootstrap/js/bootstrap.min.js" %}></script>
<!-- JavaScript -->
{# <script src={% static "bootstrap/js/jquery-1.10.2.js" %}></script>#}
{# <script src={% static "bootstrap/js/bootstrap.js" %}></script>#}
<script src={% static "bootstrap/js/jquery.formset.js" %}></script>
<!-- Page Specific Plugins -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<!-- <script src="http://cdn.oesmith.co.uk/morris-0.4.3.min.js"></script> -->
<script src={% static "bootstrap/js/morris/chart-data-morris.js" %}></script>
<script src={% static "bootstrap/js/tablesorter/jquery.tablesorter.js" %}></script>
<script src={% static "bootstrap/js/tablesorter/tables.js" %}></script>
</body>
</html>