Basic
Usody Identifier (DHID)
{{ device_real.dhid }}
Inventory Identifier (PHID)
{{ device_real.phid() }}
Type
{{ device_real.type or '- not detected -' }}
Manufacturer
{{ device_real.manufacturer or '- not detected -' }}
Model
{{ device_real.model or '- not detected -' }}
Part Number
{{ device_real.part_number or '- not detected -' }}
Serial Number
- anonymized -
Status
Physical
{{ device_real.physical_status and device.physical_status.type or '- not status -' }}
Lifecycle
{{ device_real.status and device_real.status.type or '- not status -' }}
Allocation
{% if device_real.allocated %} Allocated {% else %} Not allocated {% endif %}
Components
{% if placeholder.binding %}
{% for component in placeholder.binding.components|sort(attribute='type') %}
{{ component.type }}
{{ component.created.strftime('%H:%M %d-%m-%Y') }}

{{ component.manufacturer or '- not detected -' }}
{{ component.model or '- not detected -' }}

{% if component.type in ['RamModule', 'HardDrive', 'SolidStateDrive'] %} {{ component.size }}MB {% endif %}
{% endfor %}
{% else %}
- not detected -
{% endif %}
Repair history
{% for action in placeholder.actions %}
{{ action.type }} {{ action.severity }} {{ action.created.strftime('%H:%M %d-%m-%Y') }}
{% endfor %}