{% extends "base.html" %} {% block title %}{{ device.asset_tag }} - IT Asset Tracker{% endblock %} {% block content %}
Device Details
Status {{ device.status|capitalize }}
Asset Tag {{ device.asset_tag }}
Serial Number {{ device.serial_number }}
Make {{ device.make }}
Model {{ device.model }}
Hostname {{ device.hostname or '-' }}
Added {{ device.created_at[:10] if device.created_at else '-' }}
Updated {{ device.updated_at[:10] if device.updated_at else '-' }}
{% if current_assignment %}
Current Assignment
Since {{ current_assignment.checkout_date[:10] if current_assignment.checkout_date else '-' }}
{% endif %}
Transaction History
{% if transactions %}
{% for t in transactions %}
{{ 'OUT' if t.transaction_type == 'check_out' else 'IN' }} {{ t.person_name }}
{{ t.created_at[:10] if t.created_at else '-' }} {% if t.condition_on_return %} · Condition: {{ t.condition_on_return }}{% endif %}
{{ t.status|capitalize }}
{% endfor %}
{% for t in transactions %} {% endfor %}
Type Person Date Status Condition
{{ 'OUT' if t.transaction_type == 'check_out' else 'IN' }} {{ t.person_name }} {{ t.created_at[:10] if t.created_at else '-' }} {{ t.status|capitalize }} {{ t.condition_on_return or '-' }} View
{% else %}

No transaction history for this device.

{% endif %}
{% endblock %}