{% extends "base.html" %} {% block title %}Dashboard - IT Asset Tracker{% endblock %} {% block content %}
| Asset Tag | Device | Recipient | Staged | Action |
|---|---|---|---|---|
| {{ p.asset_tag }} | {{ p.make }} {{ p.model }} | {{ p.person_name }} | {{ p.created_at[:10] if p.created_at else '-' }} | Complete |
View all {{ pending|length }} pending
{% endif %} {% endif %}| Type | Device | Person | Date | Status |
|---|---|---|---|---|
| {{ 'OUT' if t.transaction_type == 'check_out' else 'IN' }} | {{ t.asset_tag }} | {{ t.person_name }} | {{ t.created_at[:10] if t.created_at else '-' }} | {{ t.status|capitalize }} |
No recent activity