{% extends "base.html" %} {% block meta-title %}Books (values){% endblock %} {% block nav-menu-items %} {% with True as books_books_values_is_active %} {% include "snippets/menu_items.html" %} {% endwith %} {% endblock nav-menu-items %} {% block main-content %}

Books

{% for book in object_list %} {% endfor %}
Book Authors Publisher Number of pages Price
{{ book.title }} {{ book.authors__name}} {{ book.publisher__name }} {{ book.pages }} {{ book.price }}
{% endblock %} {% block sidebar-content %}{% endblock sidebar-content %}