{% 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

img

{{total}}

Total Books

img

{{approved}}

Total Active Books

img

{{unapproved}}

Total Unapproved Books

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