mirror of https://github.com/veops/cmdb.git
19 lines
542 B
XML
19 lines
542 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<responce>
|
|
<code>{{ code }}</code>
|
|
<cis>
|
|
{% for k, v in ret.items() %}
|
|
<group by="{{ k }}">
|
|
{% for ci in v %}
|
|
|
|
<ci>
|
|
{% for item in ci|convert_to_list %}
|
|
<attribute name="{{ k }}">{{ item }}</attribute>
|
|
{% endfor %}
|
|
</ci>
|
|
|
|
{% endfor %}
|
|
</group>
|
|
{% endfor %}
|
|
</cis>
|
|
</responce> |