{% extends "dashboard/base.html" %} {% load i18n %} {% block title-page %}{% trans "Virtual machines" %}{% endblock %} {% block content %}
{% trans "ID" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="pk" %} | {% trans "Name" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="name" %} | {% trans "State" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="status" %} | {% trans "Owner" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="owner" %} | {% trans "Lease" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="lease" %} | {% trans "Memory" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="ram_size" %} | {% if user.is_superuser %}{% trans "IP address" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="ip_addr" %} | {% trans "Node" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="node" %} | {% endif %}
---|---|---|---|---|---|---|---|
{{i.pk}} |
{{ i.name }} | {{ i.get_status_display }} | {% if i.owner.profile %} {{ i.owner.profile.get_display_name }} {% else %} {{ i.owner.username }} {% endif %} {# include "dashboard/_display-name.html" with user=i.owner show_org=True #} | {{ i.lease.name }} | {{ i.ram_size }} MiB | {% if user.is_superuser %}{{ i.ipv4|default:"-" }} | {{ i.node.name|default:"-" }} | {% endif %}
{% if request.GET.s %} {% trans "No result." %} {% else %} {% trans "You have no virtual machines." %} {% endif %} |