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

Books

{% else %}

My books

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

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

{% endif %}

{{ book.stars|length }}

55

55

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