Loading src/webui/service/templates/device/detail.html +4 −2 Original line number Diff line number Diff line Loading @@ -75,13 +75,15 @@ <div class="col-sm-10"> <ul> {% for config in device.device_config.config_rules %} <li>{{ config.resource_key }}: {% if config.WhichOneof('config_rule') == 'custom' %} <li>{{ config.custom.resource_key }}: <ul> {% for key, value in (config.resource_value | from_json).items() %} {% for key, value in (config.custom.resource_value | from_json).items() %} <li><b>{{ key }}:</b> {{ value }}</li> {% endfor %} </ul> </li> {% endif %} {% endfor %} </ul> </div> Loading src/webui/service/templates/service/detail.html +4 −2 Original line number Diff line number Diff line Loading @@ -65,13 +65,15 @@ <div class="col-sm-10"> <ul> {% for config in service.service_config.config_rules %} <li>{{ config.resource_key }}: {% if config.WhichOneof('config_rule') == 'custom' %} <li>{{ config.custom.resource_key }}: <ul> {% for key, value in (config.resource_value | from_json).items() %} {% for key, value in (config.custom.resource_value | from_json).items() %} <li><b>{{ key }}:</b> {{ value }}</li> {% endfor %} </ul> </li> {% endif %} {% endfor %} </ul> </div> Loading Loading
src/webui/service/templates/device/detail.html +4 −2 Original line number Diff line number Diff line Loading @@ -75,13 +75,15 @@ <div class="col-sm-10"> <ul> {% for config in device.device_config.config_rules %} <li>{{ config.resource_key }}: {% if config.WhichOneof('config_rule') == 'custom' %} <li>{{ config.custom.resource_key }}: <ul> {% for key, value in (config.resource_value | from_json).items() %} {% for key, value in (config.custom.resource_value | from_json).items() %} <li><b>{{ key }}:</b> {{ value }}</li> {% endfor %} </ul> </li> {% endif %} {% endfor %} </ul> </div> Loading
src/webui/service/templates/service/detail.html +4 −2 Original line number Diff line number Diff line Loading @@ -65,13 +65,15 @@ <div class="col-sm-10"> <ul> {% for config in service.service_config.config_rules %} <li>{{ config.resource_key }}: {% if config.WhichOneof('config_rule') == 'custom' %} <li>{{ config.custom.resource_key }}: <ul> {% for key, value in (config.resource_value | from_json).items() %} {% for key, value in (config.custom.resource_value | from_json).items() %} <li><b>{{ key }}:</b> {{ value }}</li> {% endfor %} </ul> </li> {% endif %} {% endfor %} </ul> </div> Loading