Statistics
| Branch: | Tag: | Revision:

root / api / templates / list_images.xml @ c36934a7

History | View | Annotate | Download (407 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3
<images xmlns="http://docs.openstack.org/compute/api/v1.1" xmlns:atom="http://www.w3.org/2005/Atom">
4
  {% for image in images %}
5
  <image id="{{ image.id }}" name="{{ image.name }}"{% if  %} updated="{{ image.updated }}" created="{{ image.created }}" status="{{ image.status }}"{% endif %}>
6
  </image>
7
  {% endfor %}
8
</images>
9
{% endspaceless %}