{% extends "base.html" %} {% from "_partials/empty_state.html" import empty_state %} {% block title %}My Loans — {{ library_name() }}{% endblock %} {% block content %}
| Barcode | Title | Due | Action |
|---|---|---|---|
{{ loan.item.barcode }} |
{{ loan.item.work.title }} | {{ loan.due_at.strftime("%Y-%m-%d") if loan.due_at else "—" }} | {% if has_permission(user, 'loan.claim.self') %} {% endif %} |