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