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

My books

{% for book in books %}
{{book.owner.username}}/{{book.label}}
Last updated on {{book.versions[-1].updated_at.strftime('%B %d, %Y')}}
{{ book.stars|length }} 55 55
{% endfor %}
{% include 'user/add.html' %} {% endblock %} {% block scripts %} {% endblock %}