blob: 3baa8a9923fd65c89615ab218ce7c721728fd599 [file] [log] [blame]
{% extends "response.json" %}{% block response_content %}
"kind": "compute#imageList",
"items":[{% for image in response.template %}
{
"creationTimestamp":"{{image.created}}",
"description":"{{image.displaytext}}",
"id":"{{image.id}}",
"kind":"compute#image",
"name":"{{image.name}}",
"selfLink":"{{image.selflink}}",
"status":"{{image.isready}}"
}{% if loop.index < response.template|length %},{% endif %}{% endfor %}
]
{% endblock %}