{% extends "django_nova/images/base.html" %} {% block title %} - Launch an Image{% endblock %} {% block headerjs %} {% endblock %} {% block content %}
{% include "django_nova/_messages.html" %} {% if images %} {% for image in images %} {% if image.id == ami.id %} {% else %} {##} {% endif %} {% endfor %}
ID Description Owner
Owner: {{ ami.ownerId }}
Description: {{ ami.description }}
Location: {{ ami.location }}
ID: {{ ami.id }}
Name: {{ ami.displayName }}
Type: {{ ami.type }}
Architecture: {{ ami.architecture }}
{% if ami.is_public %}
Public Image
{% else %}
Private Image
{% endif %} Launch {% if can_modify or user.username == ami.ownerId %} Edit Image {% endif %}
{% if can_modify or user.username == ami.ownerId %}
{% csrf_token %} {% if ami.is_public %} {% else %} {% endif %}
{% csrf_token %}
{% endif %}
{{ image.id }} {% if image.description %} {{ image.description }} {% else %} {{ image.location }} {% endif %} {{ image.ownerId }} LaunchLaunch
{% else %}

No images currently available.

{% endif %}

Are you sure you wish to unregister the image?

{% endblock %} {% block footerjs %} {{ block.super }} {% endblock %}