Mercurial > templog
annotate web/views/top.tpl @ 286:61269311ed3d
wrong degree symbol
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 20 Feb 2017 23:23:57 +0800 |
parents | 6c14e0573f50 |
children |
rev | line source |
---|---|
69 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
3 <head> | |
224 | 4 <title>Wort Temperature Log</title> |
244 | 5 <meta name="viewport" content="width=device-width"> |
286 | 6 <meta name="theme-color" content="#fff"> |
280
6c14e0573f50
make overshoot_factor floating point
Matt Johnston <matt@ucc.asn.au>
parents:
250
diff
changeset
|
7 <style type="text/css"> |
69 | 8 span.no_selection { |
9 -webkit-user-select: none; // webkit (safari, chrome) browsers | |
10 -moz-user-select: none; // mozilla browsers | |
11 -khtml-user-select: none; // webkit (konqueror) browsers | |
12 } | |
202
6dd157a12035
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
13 |
6dd157a12035
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
14 span.codelink { |
6dd157a12035
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
15 font-size: 70%; |
6dd157a12035
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
16 text-align: right; |
6dd157a12035
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
17 } |
249 | 18 |
19 #mainimage { | |
20 width: 100%; | |
21 max-width: {{graphwidth}}px; | |
22 } | |
69 | 23 </style> |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
24 <title></title> |
69 | 25 </head> |
249 | 26 <script type="text/javascript"> |
27 function updatewidth() { | |
28 var width_input = document.getElementById("scaledwidth"); | |
250 | 29 var main_image = document.getElementById("mainimage"); |
30 width_input.value = main_image.clientWidth; | |
31 return true; | |
249 | 32 } |
33 | |
34 </script> | |
27 | 35 <body> |
250 | 36 <form action="" method="get" onsubmit="return updatewidth();"> |
37 <span class="no_selection"><input type="image" id="mainimage" src="{{graphdata}}"/></span> | |
69 | 38 <input type="hidden" name="length" value="{{length}}"/> |
39 <input type="hidden" name="end" value="{{end}}"/> | |
40 <input type="hidden" name="zoom" value="yeah"/> | |
250 | 41 <input type="hidden" name="scaledwidth" id="scaledwidth" value="{{graphwidth}}"/> |
69 | 42 </form> |
205 | 43 <span class="codelink">Click to zoom in, click the left axis to zoom out. <a href="https://secure.ucc.asn.au/hg/templog/file/tip">Source code</a> for the Raspberry Pi controller and this web interface</a>. <a href="set">Adjustments</a> by phone.</span> |
27 | 44 </body> |
45 </html> |