{% load i18n parse_date launch_form %}

Snapshots

{% trans "inspect" %}
{% for image in snapshots %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Status" %} {% trans "Actions" %}
{{ image.name }} {{ image.properties.image_type|default:"Image" }} {{ image.status|capfirst }} {% trans "Launch" %} {% if image.owner == request.user.tenant_id %} View
  • {% trans "Edit" %}
  • {% include "nova/images_and_snapshots/images/_delete.html" with form=delete_form %}
{% endif %}
{% for image in snapshots %} {% launch_form request request.user.tenant_id image.id as launch_form %} {% include 'nova/images_and_snapshots/images/_launch.html' with form=launch_form image_id=image.id hide=True %} {% endfor %}