Mercurial > templog
annotate web/views/top.tpl @ 558:9f659ece4e63
a few more parameters
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 09 Jun 2015 21:22:10 +0800 |
parents | 0baa57b6d9ca |
children | 6c14e0573f50 |
rev | line source |
---|---|
375 | 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> | |
523 | 4 <title>Wort Temperature Log</title> |
542 | 5 <meta name="viewport" content="width=device-width"> |
375 | 6 <style type="text/css"><!-- |
7 span.no_selection { | |
8 -webkit-user-select: none; // webkit (safari, chrome) browsers | |
9 -moz-user-select: none; // mozilla browsers | |
10 -khtml-user-select: none; // webkit (konqueror) browsers | |
11 } | |
501
236e5d131b3e
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
384
diff
changeset
|
12 |
236e5d131b3e
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
384
diff
changeset
|
13 span.codelink { |
236e5d131b3e
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
384
diff
changeset
|
14 font-size: 70%; |
236e5d131b3e
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
384
diff
changeset
|
15 text-align: right; |
236e5d131b3e
Add url link, improve atomicfile
Matt Johnston <matt@ucc.asn.au>
parents:
384
diff
changeset
|
16 } |
548 | 17 |
18 #mainimage { | |
19 width: 100%; | |
20 max-width: {{graphwidth}}px; | |
21 } | |
375 | 22 //--> |
23 </style> | |
379
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
24 <title></title> |
375 | 25 </head> |
548 | 26 <script type="text/javascript"> |
27 function updatewidth() { | |
28 var width_input = document.getElementById("scaledwidth"); | |
549 | 29 var main_image = document.getElementById("mainimage"); |
30 width_input.value = main_image.clientWidth; | |
31 return true; | |
548 | 32 } |
33 | |
34 </script> | |
333 | 35 <body> |
549 | 36 <form action="" method="get" onsubmit="return updatewidth();"> |
37 <span class="no_selection"><input type="image" id="mainimage" src="{{graphdata}}"/></span> | |
375 | 38 <input type="hidden" name="length" value="{{length}}"/> |
39 <input type="hidden" name="end" value="{{end}}"/> | |
40 <input type="hidden" name="zoom" value="yeah"/> | |
549 | 41 <input type="hidden" name="scaledwidth" id="scaledwidth" value="{{graphwidth}}"/> |
375 | 42 </form> |
502 | 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> |
333 | 44 </body> |
45 </html> |