{% extends load_base %} {% load i18n %} {% block javascript %} {% endblock %} {% block base_content %} {% include "gui/node/status_modal.html" %} {% if modals %}{% for template in modals %}{% include template %}{% endfor %}{% endif %} {# used by esdc-ee-eslic #}
{% trans "Hostname" %} | {% trans "Vendor" %} | {% trans "Model" %} | {% trans "Status" %} | {% trans "CPUs" %} | {% trans "RAM" %} | {% trans "Free CPUs" %} | {% trans "Free RAM" %} | {% trans "Servers" %} | {% trans "Capabilities" %} | |
---|---|---|---|---|---|---|---|---|---|---|
{{ node.hostname }} | {{ node.vendor }} | {{ node.model }} | {% with status_display=node.get_status_display %} {{ status_display }} {% endwith %} | {{ node.cpu_total }} x | {{ node.ram_total }} MB | {{ node.cpu_free }} x | {{ node.ram_free }} MB | {{ node.vms }} ({{ node.real_vms }}) | ||
{% blocktrans count node_len=node_list|length %}Selected 0 of {{ node_len }} node{% plural %}Selected 0 of {{ node_len }} nodes{% endblocktrans %}
{% trans "Change status" %}
{% if node_controls %}{% for template in node_controls %} {# used by esdc-ee-eslic #}
{% include template %}
{% endfor %}{% endif %}
|