{% extends "base.html" %} {% block title %}Pending Pickups - IT Asset Tracker{% endblock %} {% block content %} {% if pending %}

{{ pending|length }} device(s) staged for pickup. Complete the pickup process to collect signatures.

{% for p in pending %}

{{ p.asset_tag }}

Pending Pickup
Device Info
Make/Model {{ p.make }} {{ p.model }}
Serial {{ p.serial_number }}
{% if p.hostname %}
Hostname {{ p.hostname }}
{% endif %}
Recipient
Name {{ p.person_name }}
{% if p.location %}
Location {{ p.location }}
{% endif %} {% if p.position %}
Position {{ p.position }}
{% endif %}
{% if p.notes %}
Notes: {{ p.notes }}
{% endif %}
Staged: {{ p.created_at[:16] if p.created_at else '-' }}
{% endfor %} {% else %}

No pending pickups at this time.

Stage a Checkout
{% endif %} {% endblock %}