{% extends 'base.html' %} {% set selected_tab='my_library' %} {% block content %}
{% if not current_user.is_authenticated %}
{% endif %} {% if current_user.is_authenticated and books.total<1 %}
{% 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 current_user.is_authenticated and page.pages > 1 %}
{% endif %} {% include 'user/add.html' %} {% endblock %} {% block scripts %} {% endblock %}