Commit b099f36f authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

WebUI component:

- updated dump of config rules in service and slice entities
parent 385de9ac
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -159,8 +159,12 @@
            </td>
            <td>
                <ul>
                    {% for key, value in (config.custom.resource_value | from_json).items() %}
                    <li><b>{{ key }}:</b> {{ value }}</li>
                    {% for item_type, item in json_to_list(config.custom.resource_value) %}
                        {% if item_type == 'kv' %}
                            <li><b>{{ item[0] }}:</b> {{ item[1] }}</li>
                        {% else %}
                            <li>{{ item }}</li>
                        {% endif %}
                    {% endfor %}
                </ul>
            </td>
+6 −2
Original line number Diff line number Diff line
@@ -160,8 +160,12 @@
            </td>
            <td>
                <ul>
                    {% for key, value in (config.custom.resource_value | from_json).items() %}
                    <li><b>{{ key }}:</b> {{ value }}</li>
                    {% for item_type, item in json_to_list(config.custom.resource_value) %}
                        {% if item_type == 'kv' %}
                            <li><b>{{ item[0] }}:</b> {{ item[1] }}</li>
                        {% else %}
                            <li>{{ item }}</li>
                        {% endif %}
                    {% endfor %}
                </ul>
            </td>