{% extends 'base.html' %} {% block content %}

Library Books Details

{% for i in books %}

{{i.bookname}}

Category: {{i.catid.catname}}
Author: {{i.authid.authorname}}
ISBN: {{i.isbnnum}} {% if i.isIssued == 'True' %}
Book Already Issued{% endif %}

{% endfor %}
{% endblock %}