{% comment %}
Hostname | {{device.station.hostname}} |
IP Address | {{device.station.ip_address}} |
{% endcomment %}
{% if device.dev_id %}
Model | {{device.model}} |
Serial Number | {{device.serial_number}} |
Signature | {{device.signature}} |
Manufacturer | {{device.manufacturer}} |
Media Type | {{device.media_type}} |
Media Loaded | {{device.media_loaded}} |
Caption | {{device.caption}} |
Name | {{device.name}} |
Size | {{device.size}} |
Partitions | {{device.partitions}} |
Bytes Per Sector | {{device.bytes_per_sector}} |
Sectors Per Track | {{device.sectors_per_track}} |
Total Sectors | {{device.total_sectors}} |
Total Tracks | {{device.total_tracks}} |
Total Heads | {{device.total_heads}} |
Total Cylinders | {{device.total_cylinders}} |
DeviceID | {{device.dev_id}} |
PNPDeviceID | {{device.pnp_device_id}} |
Firmware Revision | {{device.firmware_revision}} |
Capability Descriptions | {{device.capability_descriptions}} |
{% else %}
Vendor | {{vendor}} |
Product | {{product}} |
Caption | {{device.caption}} |
Vendor ID | {{device.vendor_id}} |
Product ID | {{device.product_id}} |
USB Classes
|
Class |
SubClass |
Protocol |
{% for usb_info in device.usb_class|split:'|'%}
{% get_usb_data usb_info as usb_data %}
{{ usb_data.0 }}
|
{{ usb_data.1 }}
|
{{ usb_data.2 }}
|
{% endfor %}
|
{% endif %}