Loading src/webui/service/templates/device/detail.html +36 −1 Original line number Diff line number Diff line Loading @@ -86,7 +86,42 @@ </tbody> </table> </div> {% if device.components|length > 1 %} <div class="col-sm-8"> <table class="table table-striped table-hover"> <thead> <tr> <th scope="col">Component UUID</th> <th scope="col">Name</th> <th scope="col">Type</th> <th scope="col">Parent</th> <th scope="col">Attributes</th> </tr> </thead> <tbody> {% for component in device.components %} <tr> <td> {{ component.component_uuid.uuid }} </td> <td> {{ component.name }} </td> <td> {{ component.type }} </td> <td> {{ component.parent }} </td> <td> {{ component.attributes }} </td> </tr> {% endfor %} </tbody> </table> </div> {% endif %} </div> <b>Configurations:</b> Loading Loading
src/webui/service/templates/device/detail.html +36 −1 Original line number Diff line number Diff line Loading @@ -86,7 +86,42 @@ </tbody> </table> </div> {% if device.components|length > 1 %} <div class="col-sm-8"> <table class="table table-striped table-hover"> <thead> <tr> <th scope="col">Component UUID</th> <th scope="col">Name</th> <th scope="col">Type</th> <th scope="col">Parent</th> <th scope="col">Attributes</th> </tr> </thead> <tbody> {% for component in device.components %} <tr> <td> {{ component.component_uuid.uuid }} </td> <td> {{ component.name }} </td> <td> {{ component.type }} </td> <td> {{ component.parent }} </td> <td> {{ component.attributes }} </td> </tr> {% endfor %} </tbody> </table> </div> {% endif %} </div> <b>Configurations:</b> Loading