blob: c38b3fa9e60ac821e4d02c38183d40f13ed8270c [file] [log] [blame]
{% extends "response.xml" %}
{% block response_content %}
<instanceId>
{{ id }}
</instanceId>
<{{ attribute }}>
{% if attribute == 'groupSet' %}
{% for securitygroup in response %}
<item>
<groupId>{{ securitygroup.id }}</groupId>
</item>
{% endfor %}
{% else %}
<value>
{{ response }}
</value>
{% endif %}
</{{ attribute }}>
{% endblock %}