{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Instances" %}{% endblock %} {% block style %} {% endblock %} {% block content %}
{% trans 'Name' %} | {% trans 'Status' %} | {% trans 'VCPU' %} | {% trans 'Memory' %} | {% trans 'Actions' %} |
---|---|---|---|---|
{{ vm.name }} {{ vm.title }} |
{% if vm.status == 1 %} {% trans "Active" %} {% endif %} {% if vm.status == 5 %} {% trans "Off" %} {% endif %} {% if vm.status == 3 %} {% trans "Suspend" %} {% endif %} | {{ vm.vcpu }} | {{ vm.memory }} {% trans "MB" %} | {% include "instance_actions.html" %} |