Added ID to config pages

This commit is contained in:
Ziver Koc 2021-09-23 00:36:40 +02:00
parent c9227fd8ac
commit 4d1922d088
2 changed files with 4 additions and 0 deletions

View file

@ -8,6 +8,7 @@
<table class="table table-hover table-condensed"> <table class="table table-hover table-condensed">
<thead> <thead>
<th>#</th>
<th>Name</th> <th>Name</th>
<th>Type</th> <th>Type</th>
<th>Configuration</th> <th>Configuration</th>
@ -21,6 +22,7 @@
</thead> </thead>
{{#localEvents}} {{#localEvents}}
<tr> <tr>
<td>{{.getId()}}</td>
<td>{{.getName()}}</td> <td>{{.getName()}}</td>
<td>{{.getType()}}</td> <td>{{.getType()}}</td>
<td>{{.getDeviceConfig()}}</td> <td>{{.getDeviceConfig()}}</td>

View file

@ -8,6 +8,7 @@
<table class="table table-hover table-condensed"> <table class="table table-hover table-condensed">
<thead> <thead>
<th>#</th>
<th>Name</th> <th>Name</th>
<th>Type</th> <th>Type</th>
<th>Public</th> <th>Public</th>
@ -21,6 +22,7 @@
</thead> </thead>
{{#localSensors}} {{#localSensors}}
<tr> <tr>
<td>{{.getId()}}</td>
<td>{{.getName()}}</td> <td>{{.getName()}}</td>
<td>{{.getType()}}</td> <td>{{.getType()}}</td>
<td>{{.isSynced()}}</td> <td>{{.isSynced()}}</td>