{% extends 'common/base.html' %} {% load permissions %} {% block title %}::{{ object.name }}{% endblock %} {% block content %}

{{ object.name }}

{% if object.hostname %} {% endif %} {% if object.address %} {% endif %} {% if object.inventory_object_id %} {% endif %}
Hostname {{ object.hostname }}
IPv4 Address {{ object.address }}
Labels {% for label in object.labels.all %} {{ label.name }} {% endfor %}
Status {% if object.offline %} Offline {% elif object.temporarily_offline %} Temporarily Offline {% else %} Online {% endif %} {% if object.offline_reason %} ({{ object.offline_reason|striptags }}) {% endif %}
Inventory Object {{ object.inventory_object.name }}
Architecture {{ object.architecture }}
Processor Cores {{ object.executors }}
Memory {{ object.total_memory|filesizeformat }} ({{ object.available_memory|filesizeformat }} available)
Disk Space {{ object.disk_space|filesizeformat }} total, {{ object.temp_disk_space|filesizeformat }} temporary
Swap Space {{ object.total_swap|filesizeformat }} ({{ object.available_swap|filesizeformat }} available)
Last Job {{ object.last_job }}
{% include 'common/detail_buttons.html' with object_name=object.name %} {% endblock content %}