{% extends 'base.html' %} {% load partials %} {% block content %}

Books

New Book
{% partialdef table inline=True %}
{% if books_page.object_list %} {% include "partials/table.html" with objects=books_page.object_list fields=fields detail_view="demo:book_detail" delete_view="demo:book_delete" update_view="demo:book_update" %} {% else %}

There are no books. Create one now?

{% endif %}
{% if books_page.paginator.num_pages > 1 %} {% include "partials/pagination.html" with page=books_page %} {% endif %}
{% endpartialdef %} {% endblock content %}