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

Authors

New Author
{% partialdef table inline=True %}
{% if authors_page.object_list %} {% include "partials/table.html" with objects=authors_page.object_list fields=fields detail_view="demo:author_detail" delete_view="demo:author_delete" update_view="demo:author_update" %} {% else %}

There are no authors. Create one now?

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