{% extends "partials/base.html" %} {% load static %} {% block content %} {% load custom_filters %}
{% block title %} {% include "partials/title.html" with title="List Books" text="Dashboard" textone="List Books" %} {% endblock title %}

All Books

{% for book in booklist %} {% empty %} {% endfor %}
ID Book Name Status Action
{{ forloop.counter }} {{book.book_name}} {% if not book.is_approve %} Unapproved {% else %} Approved {% endif %}
No book list
{% endblock content %}