{% extends 'base.html' %} {% block content%}
Book Loan List
{% for book_loan in book_loan %} {% endfor %}
Book Title Member Name Loan Date Due Date Return Date Status Actions
Book Title Member Name Loan Date Due Date Return Date Status Actions
{{ book_loan.book.title }} {{ book_loan.member.name }} {{ book_loan.loan_date }} {{ book_loan.due_date }} {{ book_loan.return_date|default:"Not Returned" }} {% if book_loan.is_returned %}Returned{% else %}Not Returned{% endif %} Edit Delete
Add Book Loan
{% endblock content%}