{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Instances" %} - {{ compute.name }}{% endblock %} {% block style %} {% endblock %} {% block content %}
{% trans 'Name' %} {% trans 'Description' %} |
{% trans 'User' %} | {% trans 'Status' %} | {% trans 'VCPU' %} | {% trans 'Memory' %} | {% trans 'Actions' %} |
---|---|---|---|---|---|
{{ inst }} {{ vm.title }} |
{% if vm.userinstances.count > 0 %}{{ vm.userinstances.first_user.user.username }}{% if vm.userinstances.count > 1 %} (+{{ vm.userinstances.count|add:"-1" }}){% endif %}{% endif %} | {% 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|filesizeformat }} | {% include 'instance_actions.html' %} |