{# templates/components/user_loans_results.html #} {%- if users %} {# Results Table Card #}
| User | Identification | Active Loans | Last Loan Date | Actions |
|---|---|---|---|---|
|
{{ user.name }}
|
{{ user.identification or 'N/A' }} | {{ user.loan_count or 0 }} | {{ user.last_loan_date or 'Never' }} | View Details |
{% if search %} No users match your search for "{{ search }}" {% elif status == 'with_loans' %} No users have active loans {% elif status == 'no_loans' %} All users have at least one active loan {% else %} There are no users in the system yet {% endif %}
Clear Filters