Fixed issue 35 where device configuration params was not showing
This commit is contained in:
parent
b21a28e3a4
commit
6839ad1a53
2 changed files with 4 additions and 4 deletions
|
|
@ -19,12 +19,12 @@
|
||||||
<th class="text-right">Owner:</th>
|
<th class="text-right">Owner:</th>
|
||||||
<td>{{event.getUser().getUsername()}} <p></td>
|
<td>{{event.getUser().getUsername()}} <p></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{#event.getDeviceConfig().getConfiguration()}}
|
{{#event.getDeviceConfigurator().getConfiguration()}}
|
||||||
<tr>
|
<tr>
|
||||||
<th class="text-right">{{.getNiceName()}}:</th>
|
<th class="text-right">{{.getNiceName()}}:</th>
|
||||||
<td>{{.getString()}}</td>
|
<td>{{.getString()}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/event.getDeviceConfig().getConfiguration()}}
|
{{/event.getDeviceConfigurator().getConfiguration()}}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -54,12 +54,12 @@
|
||||||
<th class="text-right">Owner:</th>
|
<th class="text-right">Owner:</th>
|
||||||
<td>{{sensor.getUser().getUsername()}} <p></td>
|
<td>{{sensor.getUser().getUsername()}} <p></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{#sensor.getDeviceConfig().getConfiguration()}}
|
{{#sensor.getDeviceConfigurator().getConfiguration()}}
|
||||||
<tr>
|
<tr>
|
||||||
<th class="text-right">{{.getNiceName()}}:</th>
|
<th class="text-right">{{.getNiceName()}}:</th>
|
||||||
<td>{{.getString()}}</td>
|
<td>{{.getString()}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/sensor.getDeviceConfig().getConfiguration()}}
|
{{/sensor.getDeviceConfigurator().getConfiguration()}}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue