{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 i18n %} {% block content %}

{% trans "Virtual Machines" %}

{% if messages %}
{% for message in messages %} {{ message }} {% endfor %}
{% endif %} {% if not error %}

{% trans 'To create a new virtual machine, click "Create VM"' %}

{% endif %}
{% if not error %} {% for vm in vms %} {% if vm.ipv6 %} {% endif %} {% endfor %}
ID IPv4 IPv6 {% trans "Status" %}
{{vm.vm_id}}{{vm.ipv4}} {{vm.ipv6}} {% if vm.state == 'ACTIVE' %} {{vm.state|title}} {% elif vm.state == 'FAILED' %} {{vm.state|title}} {% else %} {{vm.state|title}} {% endif %} {% trans "View Detail" %}
{% endif %} {% if is_paginated %} {% endif %}
{%endblock%}