{% load sizeformat %} {% load i18n %}

{% trans "My Instances" %}

{% trans "Launch Instance" %} {% trans "inspect" %}
{% for instance in instances %} {% endfor %}
{% trans "Name" %} {% trans "IP" %} {% trans "Size" %} {% trans "State" %} {% trans "Actions" %}
{{ instance.name }} {% for ip_group, addresses in instance.addresses.items %} {% if instance.addresses.items|length > 1 %}

{{ip_group}}

    {% for address in addresses %}
  • {{address.addr}}
  • {% endfor %}
{% else %}
    {% for address in addresses %}
  • {{address.addr}}
  • {% endfor %}
{% endif %} {% endfor %}
{{ instance.full_flavor.ram|mbformat }} Ram | {{ instance.full_flavor.vcpus }} VCPU | {{ instance.full_flavor.disk }}GB Disk {{ instance.status|lower|capfirst }} More
    {% if instance.status == 'PAUSED' %}
  • {% include 'nova/instances_and_volumes/instances/_unpause.html' with form=unpause_form %}
  • {% endif %} {% if instance.status == 'SUSPENDED' %}
  • {% include 'nova/instances_and_volumes/instances/_resume.html' with form=resume_form %}
  • {% endif %} {% if instance.status == "ACTIVE" %}
  • {% trans 'VNC Console' %}
  • {% trans 'Log' %}
  • {% trans 'Snapshot' %}
  • {% include 'nova/instances_and_volumes/instances/_pause.html' with form=pause_form %}
  • {% include 'nova/instances_and_volumes/instances/_suspend.html' with form=suspend_form %}
  • {% include 'nova/instances_and_volumes/instances/_reboot.html' with form=reboot_form %}
  • {% endif %}
  • {% trans 'Edit' %}
  • {% include 'nova/instances_and_volumes/instances/_terminate.html' with form=terminate_form %}