initial commit for NVR plugin

This commit is contained in:
Ziver Koc 2021-01-26 01:53:11 +01:00
parent 65581f13d5
commit da3ba116da
18 changed files with 964 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<h1 class="page-header">Camera Overview</h1>
<div class="col-md-12">
<div class="panel panel-default drop-shadow">
<div class="panel-heading">Cameras</div>
<div class="panel-body">
<table class="table table-hover table-condensed">
<thead>
<th class="col-md-4">Name</th>
<th class="col-md-3">Type</th>
<th class="col-md-2">Data</th>
<th class="col-md-2">Last Update</th>
</thead>
{{#cameras}}
<tr>
<td><a href="?id={{.getId()}}">{{.getName()}}</a></td>
<td>{{.getDeviceConfig().getClass().getSimpleName()}}</td>
<td>{{.getDeviceData()}}</td>
<td><span class="timestamp">{{.getDeviceData().getTimestamp()}}</span></td>
</tr>
{{/cameras}}
</table>
</div>
</div>
</div>