Mercurial > code > home > repos > homeauto
annotate service/dhcpleases/index.html @ 1708:3cfd3693a4ac
quick fixes for cyclone sse
author | drewp@bigasterisk.com |
---|---|
date | Wed, 17 Nov 2021 14:25:14 -0800 |
parents | 099b7e7aad44 |
children |
rev | line source |
---|---|
174 | 1 <!doctype html> |
2 <html> | |
3 <head> | |
4 <title>dhcp leases</title> | |
746 | 5 <meta charset="utf-8"> |
195 | 6 <script src="/lib/polymer/1.0.9/webcomponentsjs/webcomponents-lite.min.js"></script> |
531
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
7 |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
8 <script src="/lib/require/require-2.3.3.js"></script> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
9 <script src="/rdf/common_paths_and_ns.js"></script> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
10 |
746 | 11 <link rel="stylesheet" href="/rdf/browse/style.css"> |
12 | |
531
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
13 <link rel="import" href="/rdf/streamed-graph.html"> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
14 <link rel="import" href="/lib/polymer/1.0.9/polymer/polymer.html"> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
15 |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
16 <meta name="mobile-web-app-capable" content="yes"> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
17 <meta name="viewport" content="width=device-width, initial-scale=1"> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
18 |
174 | 19 </head> |
746 | 20 <body class="rdfBrowsePage"> |
174 | 21 <h1>Active dhcp leases</h1> |
531
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
22 <p><a href="../wifi">go to wifi</a>; <a href="/rdf/browse/?graph=https%3A%2F%2Fbigasterisk.com%2Fsse_collector%2Fgraph%2Fnetwork">merge with wifi</a></p> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
23 |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
24 <template id="t" is="dom-bind"> |
174 | 25 |
531
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
26 <streamed-graph url="graph/events" graph="{{graph}}"></streamed-graph> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
27 <div id="out"></div> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
28 <script type="module" src="/rdf/streamed_graph_view.js"></script> |
174 | 29 |
531
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
30 </template> |
174 | 31 |
531
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
32 <div class="served-resources"> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
33 <a href="stats/">/stats/</a> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
34 <a href="graph">/graph</a> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
35 <a href="graph/events">/graph/events</a> |
f372e9d358d2
rewrite dhcpleases to use dnsmasq's data files, and all the new build stuff
drewp@bigasterisk.com
parents:
273
diff
changeset
|
36 </div> |
174 | 37 </body> |
38 </html> |