{% extends "base_.html" %} {% load tags %} {% block title %} ElJefe {% endblock %} {% block extrahead %} {% endblock %} {% block initializer %} {% endblock %} {% block content %} {% load tags %} {% if device %}

USB Device Information

{% comment %} {% endcomment %} {% if device.dev_id %} {% else %} {% endif %}
Hostname{{device.station.hostname}}
IP Address{{device.station.ip_address}}
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}}
Vendor{{vendor}}
Product{{product}}
Caption{{device.caption}}
Vendor ID{{device.vendor_id}}
Product ID{{device.product_id}}
USB Classes {% for usb_info in device.usb_class|split:'|'%} {% get_usb_data usb_info as usb_data %} {% endfor %}
Class SubClass Protocol
{{ usb_data.0 }} {{ usb_data.1 }} {{ usb_data.2 }}
{% comment %}

Last Connection

Date{{device.last_connection}}
Connected to Hostname{{device.station.hostname}}
{% endcomment %}

The USB device has been connected to the following stations :

{%for item in connected_stations%} {%endfor%}
{{item.hostname}}{{item.ip_address}}
{% endif %} {% endblock %}