diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2016-01-20 19:05:02 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2016-01-20 19:17:48 +0200 |
| commit | 17b89099b36a63ed2854083cdb4cb06f47a41e14 (patch) | |
| tree | 2db4ac8f2bafa8ff923b0080bbe400918ec7f6cd /templates/adm.html | |
| parent | 09b2d3ba6bd282982b609ff84410e2bb0e2f9d49 (diff) | |
Refactor file structure
Diffstat (limited to 'templates/adm.html')
| -rw-r--r-- | templates/adm.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/adm.html b/templates/adm.html new file mode 100644 index 0000000..a3442a6 --- /dev/null +++ b/templates/adm.html @@ -0,0 +1,28 @@ +<!doctype HTML> +<html > + <head> + <link rel="stylesheet" type="text/css" href="/f/styles/style.css"> + <script src="/f/node_modules/angular/angular.min.js"></script> + <script src="/socket.io/socket.io.js"></script> + <script src="/f/scripts/client.js"></script> + <title>Jonokone Admin</title> + </head> + <body ng-app="ioc" > + <div ng-controller="ioctrl"> + <table ng-click="popfirst()" ng-class="{outdated:outdated,updated:!outdated}" id="adminscreen"> + <tr> + <td> Jonoa:</td> + <td> {{qsize}}</td> + </tr> + <tr> + <td>Nimi: </td> + <td> {{que[0].name}}</td> + </tr> + <tr> + <td>Rivi: </td> + <td> {{que[0].row}}</td> + </tr> + </table> + </div> + </body> +</html>
\ No newline at end of file |
