{% extends "base.html" %} {% block title %}{{ person.name }} - IT Asset Tracker{% endblock %} {% block content %}
Person Details
Name {{ person.name }}
Location {{ person.location or '-' }}
Position {{ person.position or '-' }}
Phone {{ person.phone or '-' }}
Email {{ person.email or '-' }}
Added {{ person.created_at[:10] if person.created_at else '-' }}
Device History
{% if transactions %}
{% for t in transactions %}
{{ 'OUT' if t.transaction_type == 'check_out' else 'IN' }} {{ t.asset_tag }}
{{ t.make }} {{ t.model }} · {{ t.created_at[:10] if t.created_at else '-' }}
{{ t.status|capitalize }}
{% endfor %}
{% for t in transactions %} {% endfor %}
Type Device Date Status
{{ 'OUT' if t.transaction_type == 'check_out' else 'IN' }} {{ t.asset_tag }} {{ t.created_at[:10] if t.created_at else '-' }} {{ t.status|capitalize }} View
{% else %}

No device history for this person.

{% endif %}
{% endblock %}