aboutsummaryrefslogtreecommitdiff
path: root/web/app/templates/property.html
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2015-10-25 00:33:41 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2015-10-25 01:47:52 +0200
commite8ec4001ce1297d5a3db6d3fc8af8de47daa6a61 (patch)
tree839d9c1da0c2b1db539c104d9aacc8c8e62a3dcd /web/app/templates/property.html
parent0266bdd60cb9cccf20a5ded3eba72ea833bee72d (diff)
downloaddiller-server-e8ec4001ce1297d5a3db6d3fc8af8de47daa6a61.tar.gz
diller-server-e8ec4001ce1297d5a3db6d3fc8af8de47daa6a61.tar.bz2
diller-server-e8ec4001ce1297d5a3db6d3fc8af8de47daa6a61.tar.xz
diller-server-e8ec4001ce1297d5a3db6d3fc8af8de47daa6a61.zip
wip
Diffstat (limited to 'web/app/templates/property.html')
-rw-r--r--web/app/templates/property.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/web/app/templates/property.html b/web/app/templates/property.html
deleted file mode 100644
index 65a66e8..0000000
--- a/web/app/templates/property.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<div class="container">
-
- <h1>
- <a href="#/device/{{ctrl.device.id}}">{{ctrl.device.key}}</a>
- <small class="muted">device</small>
- </h1>
-
- <h2>
- {{ctrl.property.key}}
- <small class="muted">property</small>
- </h2>
-
- <ul>
- <li>Created: {{ctrl.property.created_timestamp | date}}</li>
- <li>Name: {{ctrl.property.name}}</li>
- <li>Description: {{ctrl.property.description}}</li>
- </ul>
-
- <h3>Latest Values</h3>
-
- <table class="table">
- <thead>
- <tr>
- <th>Timestamp</th>
- <th>Value</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="v in ctrl.values">
- <td>{{v.timestamp | date:'medium'}}</td>
- <td>{{v.value}}</td>
- </tr>
- </tbody>
- </table>
-
-</div>