root / snf-cyclades-app / synnefo / api / templates / list_networks.xml @ 5db2001a
History | View | Annotate | Download (577 Bytes)
1 |
{% spaceless %} |
---|---|
2 |
<?xml version="1.0" encoding="UTF-8"?>
|
3 |
<networks xmlns="http://docs.openstack.org/compute/api/v1.1" xmlns:atom="http://www.w3.org/2005/Atom"> |
4 |
{% for network in networks %} |
5 |
<network id="{{ network.id }}" name="{{ network.name }}"{% if %} updated="{{ network.updated }}" created="{{ network.created }}"{% endif %}> |
6 |
|
7 |
{% if network.subnets %} |
8 |
<subnets>
|
9 |
{% for subnet_id in network.subnets.values %} |
10 |
<subnet id="{{ server_id }}"></subnet> |
11 |
{% endfor %} |
12 |
</subnets>
|
13 |
{% endif %} |
14 |
|
15 |
</network>
|
16 |
{% endfor %} |
17 |
</networks>
|
18 |
{% endspaceless %} |