parent
80f8bea634
commit
dad262f854
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@ |
|||||||
|
0648559aed5a9ec1d478b445839bdb807ced7fc5 |
@ -0,0 +1,7 @@ |
|||||||
|
{ |
||||||
|
"private": true, |
||||||
|
"dependencies": { |
||||||
|
"laravel-elixir": "^4.0.0", |
||||||
|
"gulp": "^3.8.8" |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,76 @@ |
|||||||
|
<?php $page = 'monitoring'; include "_start.php"; ?> |
||||||
|
|
||||||
|
<h1>Monitoring & Reporting</h1> |
||||||
|
|
||||||
|
<div class="Box"> |
||||||
|
<h2>Status</h2> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<th>Reference:</th> |
||||||
|
<td> |
||||||
|
<span id="hasref" class="Valfield">%hasref%</span> |
||||||
|
<a onclick="page_mon.captureRef()" class="button btn-green">Capture</a> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th>Actual distance:</th> |
||||||
|
<td> |
||||||
|
<span id="reporting" class="Valfield">N/A</span> |
||||||
|
<a onclick="page_mon.toggleReporting()" class="button btn-blue">Measure</a> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="Box"> |
||||||
|
<h2>Reporting</h2> |
||||||
|
<form method="POST"> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<th><label for="rep-on">Reporting:</label></th> |
||||||
|
<td> |
||||||
|
<input type="checkbox" id="rep-on" name="rep-on"><!-- |
||||||
|
--> <label for="rep-on">enabled</label> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th><label for="rep-interval">Interval:</label></th> |
||||||
|
<td> |
||||||
|
<input type="number" id="rep-interval" style="max-width: 10em" value="%repInterval%"> |
||||||
|
seconds |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th>Service:</th> |
||||||
|
<td> |
||||||
|
<input type="radio" name="rep-service" value="xively" id="rep-svc-xv"> <label for="rep-svc-xv">Xively</label> |
||||||
|
<input type="radio" name="rep-service" value="thingspeak" id="rep-svc-ts"> <label for="rep-svc-ts">ThingSpeak</label> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th><label for="rep-feed">Feed/Channel:</label></th> |
||||||
|
<td> |
||||||
|
<input type="text" name="rep-feed" id="rep-feed"> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th><label for="rep-key">API key:</label></th> |
||||||
|
<td> |
||||||
|
<input type="text" name="rep-key" id="rep-key"> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<th> </th> |
||||||
|
<td> |
||||||
|
<input type="submit" value="Save changes"> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
|
||||||
|
<script> |
||||||
|
$().ready(page_mon.init); |
||||||
|
</script> |
||||||
|
|
||||||
|
<?php include "_end.php"; ?> |
Loading…
Reference in new issue