{% extends "librarian/base.html" %} {% load django_tables2 %} {% load gravatar %} {% block title %}Copy Details - {{ copy.assn_id }}{% endblock %} {% block navbar_items %} {{ block.super }}
Copy Ref (Assn. No.): {{ copy.assn_id }}
Created: {{ copy.created_at }}
Status: {% if is_loaned %} Loaned {% elif not copy.is_loanable %} Not Loanable {% elif copy.is_archived %} Archived {% else %} Available {% endif %}
Shelf: {{ copy.shelf }}
Loaned To: {% include "librarian/widgets/user_profile_link.html" with user=copy.get_loaned_to %}
Loaned Date: {{ current_loan.checked_out }}
Due Date: {{ current_loan.due }} {% if current_loan.is_overdue %}Overdue{% endif %}
{% endif %}Is Loanable: {{ copy.is_loanable }}
All-time Loan Count: {{ all_time_loans }}
No loan history found.
{% endif %}