{% extends 'base.html' %} {% load static %} {% load filters %} {% load tags %} {% block navbar %} {% include 'snippet.navlinks.html' %} {% include 'snippet.search.html' %} {% endblock %} {% block content %} {% include 'snippet.filterbar.html' %} {% include 'snippet.paginator.html' %}
{% if machines %} {% if view == 'virtual' %}{% endif %} {% if view != 'free' and view != 'my' %}{% endif %} {% for machine in machines %} {% if view == 'virtual' %} {% endif %} {% if view != 'free' and view != 'my' %} {% endif %} {% status_ipv4 machine %} {% status_ipv6 machine %} {% status_ssh machine %} {% status_login machine %} {% endfor %}
FQDN {% order_list request 'fqdn' %}       Active Distribution {% order_list request 'installations__distribution' %}Reserved By {% order_list request 'reserved_by__username' %}CPU {% order_list request 'cpu_cores' %} RAM (GB) {% order_list request 'ram_amount' %} IPv4 IPv6 SSH Login
{{ machine.fqdn }} {% if machine.administrative or machine.system.administrative %} {% endif %} {% if machine.system.virtual %} {% endif %} {% if machine.is_bmc %} {% endif %} {% if machine.vm_dedicated_host %} {% endif %} {% if machine.bmc %} {% endif %} {% if machine.serialconsole %} {% endif %} {% if machine.remotepower %} {% endif %} {{ machine.get_active_distribution.distribution|truncatechars:50 }}{{ machine.reserved_by|default_if_none:" " }}{{ machine.cpu_cores }}x {{ machine.cpu_model|vendor_image:25 }} {{ machine.ram_amount|divide:1024}}
{% include 'snippet.paginator.html' %} {% else %}
No machines found!
{% endif %}
{% endblock %}