{% 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 Book Description View
{{ forloop.counter }} {{book.book_name}} {{book.description|safe}} Download Book
No book list
{% endblock content %}