Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / api / templates / version_details.atom @ 483c9197

History | View | Annotate | Download (830 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3
<feed xmlns="http://www.w3.org/2005/Atom">
4
  <title type="text">About This Version</title>
5
  <updated>{{ now }}</updated>
6
  <id>http://ocean.grnet.gr/</id>
7
  <author>
8
    <name>Synnefo</name>
9
    <uri>http://ocean.grnet.gr/</uri>
10
  </author>
11
  <link rel="self" href="http://ocean.grnet.gr/"/>
12

    
13
  <entry>
14
    <id>http://servers.api.openstack.org/{{ version.id }}/</id>
15
    <title type="text">Version {{ version.id }}</title>
16
    <updated>{{ version.updated }}</updated>
17
    {% for link in version.links %}
18
      <link rel="{{ link.rel }}" {% if link.type %}type="{{ link.type }}" {% endif %}href="{{ link.href }}"/>
19
    {% endfor %}
20
    <content type="text">Version {{ version.id }} {{ version.status }} ({{ version.updated }})</content>
21
  </entry>
22
</feed>
23
{% endspaceless %}