{% extends "ereuse_devicehub/base_site.html" %} {% block main %}

Inventory

{{ device.devicehub_id }}

Type Details
Type
{{ device.type }}
Manufacturer
{{ device.manufacturer }}
Model
{{ device.model }}
Serial Number
{{ device.serial_number }}
Status Details
Physical States
{{ device.physical or '' }}
Trading States
{{ device.last_action_trading or ''}}
Usage States
{{ device.usage or '' }}
Rate Details
Rating
{{ device.rate or '' }}
Processor
{{ device.rate.processor or '' }}
RAM
{{ device.rate.ram or '' }}
Data storage
{{ device.rate.data_storage or '' }}
Traceability log Details
{% for action in device.reverse_actions %}
{{ action.type }} {{ action.severity }} {{ action.created.strftime('%H:%M %d-%m-%Y') }}
{% endfor %}
Components Details
{% for component in device.components|sort(attribute='type') %}
{{ component.type }}
{{ component.created.strftime('%H:%M %d-%m-%Y') }}

{{ component.manufacturer }}
{{ component.model }}

{% if component.type in ['RamModule', 'HardDrive', 'SolidStateDrive'] %} {{ component.size }}MB {% endif %}
{% endfor %}
{% endblock main %}