{% load i18n parse_date launch_form %} {% for image in images %} {% endfor %}
{%trans "ID"%} {%trans "Name"%} {%trans "Created"%} {%trans "Updated"%} {%trans "Status"%}
{{image.id}} {{image.name}} {{image.created_at|parse_date}} {{image.updated_at|parse_date}} {{image.status|capfirst}}
  • {{ image.request.user.id }}{% trans "Launch" %}
  • {% if image.owner == request.user.tenant_id %}
  • {% include "nova/images/_delete.html" with form=delete_form %}
  • {% trans "Edit" %}
  • {% endif %}
{% for image in images %} {% launch_form request request.user.tenant_id image.id as launch_form %} {% include 'nova/images/_launch.html' with form=launch_form image_id=image.id hide=True %} {% endfor %}