root / api / templates / list_images.xml @ b9a77976
History | View | Annotate | Download (588 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 |
{% if image.metadata %} |
7 |
<metadata>
|
8 |
{% for key, val in image.metadata.values.items %} |
9 |
<meta key="{{ key }}">{{ val }}</meta> |
10 |
{% endfor %} |
11 |
</metadata>
|
12 |
{% endif %} |
13 |
</image>
|
14 |
{% endfor %} |
15 |
</images>
|
16 |
{% endspaceless %} |