Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / templates / version_details.xml @ 1b9ce1d1

History | View | Annotate | Download (591 Bytes)

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