{% extends "base.html" %} {% block content %}
| Book ID | Title | Author | Category | Shelf No | Total | Available | Status | {% if current_user.can_manage_books() %}Actions | {% endif %}
|---|---|---|---|---|---|---|---|---|
| {{ book.book_id }} | {{ book.title }} | {{ book.author }} | {{ book.category }} | 🗂️ {{ book.shelf_no }} | {{ book.total_copies }} | {{ book.available_copies }} | {% if book.is_available() %} ✓ Available {% else %} ✗ Not Available {% endif %} | {% if current_user.can_manage_books() %}Edit | {% endif %}
| No books found | ||||||||