{% extends "layouts/content-bootstrap.html" %} {% load django_tables2 %} {% block content %} {% if device_type.owners_only %}

{{ device_type.name }} is a hidden device type.

Only owners of one or more devices of type {{ device_type }} can see this information.
{% endif %} {% if is_admin and device_type.name != 'dynamic-vm' and device_type.health_check_job == '' %}
The '{{ device_type }}' device type has no health check job in the admin interface. Consider adding a health check definition.
{% endif %}

{{ device_type }} information

Architecture version
{{ arch_version|default:'.' }}
Processor Family
{{ processor|default:'.' }}
CPU model
{{ cpu_model|default:'.' }}
Bit width
{{ arch_bits|default:'.' }}
Cores
{{ cores|default:'.' }}
Description
{{ description|default:'.' }}

{{device_type}} status

Running jobs
{{ running_jobs_num }}
Queued jobs
{{ queued_jobs_num }}
{% if device_type.name != 'dynamic-vm' %}
Checks/failures
Graphical reports
{% endif %}
Idle devices
{{ idle_num }}
Offline or going offline
{{ offline_num }}
{% if device_type.name != 'dynamic-vm' %}
Retired
{{ retired_num }}
{% endif %}
{% render_table devices_table_no_dt %} {% if device_type.name != 'dynamic-vm' and device_type.health_check_job != '' %} {% render_table health_job_summary_table %} {% endif %} {% render_table device_type_jobs_table %} {% endblock %} {% block scripts %} {% endblock %}