{% extends "base.html" %} {% block content %}
Back to All Users
{{ user.name[:1].upper() }}

{{ user.name }}

ID: {{ user.id }} | Identification: {{ user.identification or 'N/A' }}

{{ active_count }} Active Loans
{{ returned_count }} Returned
{% if user.email %} Email {% endif %} {% if user.phone %} Call {% endif %}

Loan History

{% if loans %}
{% for loan in loans %} {% endfor %}
Tablet Loan Date Return Date Status
{{ loan.brand }} {{ loan.model }}
{{ loan.serial_number }}
{{ loan.loan_date[:10] if loan.loan_date else 'N/A' }} {{ loan.loan_date[11:16] if loan.loan_date else '' }} {% if loan.return_date %} {{ loan.return_date[:10] }} {{ loan.return_date[11:16] }} {% else %} Not returned {% endif %} {{ loan.status|title }}
{% else %}

No loan history for this user

{% endif %}
{% endblock %}