{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Book List {% endblock title %} {% block content %}

All Book List

Add Book
{% comment %} {% endcomment %} {% for book in books %} {% comment %} {% endcomment %} {% empty %} {% endfor %}
ID Title Author Cover ImageBook FileStatus Created At Action
{{ book.id }} {{ book.title }} {{ book.author_name }} {% if book.cover_image %} Cover {% else %} No Image {% endif %} {% if book.book_file %} {% else %} No File {% endif %} {% if book.status == 1 %} Published {% else %} Unpublished {% endif %} {{ book.created_at|date:"d M Y H:i" }}
No books available
{% endblock content %}