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

Books

{% for book in books if not book.is_deleted %}
{{book.owner.username}}/{{book.label}}
{% if book.versions %}

Last updated on {{book.versions[-1].updated_at.strftime('%B %d, %Y')}}

{% endif %}
{% endfor %} {% if page.pages > 1 %}
{% endif %}
{% include 'book/add_book_modal.html' %} {% endblock %} {% block scripts %} {% endblock %}