Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / templates / port.xml @ 5db2001a

History | View | Annotate | Download (549 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3
<port xmlns="http://docs.openstack.org/compute/api/v1.1" xmlns:atom="http://www.w3.org/2005/Atom" id="{{ port.id }}" name="{{ port.name }}" updated="{{ port.updated }}" created="{{ port.created }}" mac_address="{{port.mac_address}}">
4

    
5
    <fixed_ips>
6
        {% for ip in port.fixed_ips.values %}
7
        <ip>
8
            <ip_address id="{{ ip.ip_address }}"></ip_address>
9
            <subnet id="{{ ip.subnet }}"></subnet>
10
        </ip>
11
        {% endfor %}
12
   </fixed_ips>
13
{% endspaceless %}