Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / templates / versions_list.xml @ be1dca04

History | View | Annotate | Download (460 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3
<versions xmlns="http://docs.openstack.org/common/api/v1.0" xmlns:atom="http://www.w3.org/2005/Atom">
4
  {% for version in versions %}
5
  <version id="{{ version.id }}" status="{{ version.status }}" updated="{{ version.updated }}">
6
    {% for link in version.links %}
7
      <atom:link rel="{{ link.rel }}" href="{{ link.href }}"/>
8
    {% endfor %}
9
  </version>
10
  {% endfor %}
11
</versions>
12
{% endspaceless %}