{% extends "base.html" %} {% block content %}
{% if object_list %} {% if is_paginated %}

Pag. {{ page }} de {{ pages }}
{% if has_previous %} Anterior, {% endif %} {% if has_next %} Siguiente {% endif %}

{% endif %} {% for object in object_list %}

{{ object.title }}

{{ object.pub_date }}

{{ object.body|linebreaks }}

{% if object.bookfile.all %}

Archivos adjuntos

{% endif %}
{% endfor %} {% else %}

No Books Available

{% endif %}

{% endblock content %}