{% extends "dashboard/base.html" %} {% load i18n %} {% block title-page %}{% trans "Virtual machines" %}{% endblock %} {% block content %}
{% trans "Group actions" %} {% trans "Migrate" %} {% trans "Reboot" %} {% trans "Shutdown" %} {% trans "Destroy" %}
{% trans "ID" %} | {% trans "Name" %} | {% trans "State" %} | {% trans "Owner" %} | {% if user.is_superuser %}{% trans "Node" %} | {% endif %}
---|---|---|---|---|
{{i.pk}} |
{{ i.name }} | {{ i.get_status_display }} | {{ i.owner }} | {% if user.is_superuser %}{{ i.node.name|default:"-" }} | {% endif %}
{% trans "You have no virtual machines." %} |