{% 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"' %} {% if show_create_ssh_key_msg %} {% url 'hosting:create_ssh_key' as create_ssh_url %}
{% blocktrans %}To access your VM, add your SSH key here{% endblocktrans %} {% endif %}

{% 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%}