Statistics
| Branch: | Tag: | Revision:

root / api / templates / list_flavors.xml @ b9a77976

History | View | Annotate | Download (376 Bytes)

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