Added ID fields to Event and Sensor detail page

This commit is contained in:
Ziver Koc 2017-03-17 15:38:17 +01:00
parent 1338f20624
commit 0a77d3f400
2 changed files with 8 additions and 0 deletions

View file

@ -6,6 +6,10 @@
<div class="panel-body">
<table class="table table-hover table-condensed">
<thead>
<tr>
<th class="text-right">Event ID:</th>
<th>{{event.getId()}}</th>
</tr>
<tr>
<th class="text-right">Name:</th>
<th>{{event.getName()}}</th>

View file

@ -17,6 +17,10 @@
<div class="panel-body">
<table class="table table-hover table-condensed">
<thead>
<tr>
<th class="text-right">Sensor ID:</th>
<th>{{sensor.getId()}}</th>
</tr>
<tr>
<th class="text-right">Name:</th>
<th>{{sensor.getName()}}</th>