Statistics
| Branch: | Tag: | Revision:

root / api / templates / list_addresses.xml @ 96b635d9

History | View | Annotate | Download (355 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3
<addresses xmlns="http://docs.openstack.org/compute/api/v1.1">
4
  {% for address in addresses %}
5
  <network id="{{ address.id }}">
6
    {% for ip in address.values %}
7
    <ip version="{{ ip.version }}" addr="{{ ip.addr }}"/>
8
    {% endfor %}
9
  </network>
10
  {% endfor %}
11
</addresses>
12
{% endspaceless %}