hal/plugins/hal-nvr/resource/resource/web/camera_overview.tmpl
2022-05-20 13:04:23 +02:00

22 lines
725 B
Cheetah

<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>
</thead>
{{#cameras}}
<tr>
<td><a href="?id={{.getId()}}">{{.getName()}}</a></td>
<td>{{.getDeviceConfig().getClass().getSimpleName()}}</td>
</tr>
{{/cameras}}
</table>
</div>
</div>
</div>