{% extends 'user/user_layout.html' %}
{% load bookwyrm_tags %}
{% load humanize %}
{% load i18n %}
{% block title %}
{% include 'user/books_header.html' %}
{% endblock %}
{% block header %}
{% include 'user/books_header.html' %}
{% trans "Cover" %} | {% trans "Title" %} | {% trans "Author" %} | {% trans "Shelved" %} | {% trans "Started" %} | {% trans "Finished" %} | {% if ratings %}{% trans "Rating" %} | {% endif %} {% if shelf.user == request.user %} {% endif %}|
---|---|---|---|---|---|---|---|
{% include 'snippets/book_cover.html' with book=book size="small" %} | {{ book.title }} | {% include 'snippets/authors.html' %} | {{ book.created_date | naturalday }} | {% latest_read_through book user as read_through %}{{ read_through.start_date | naturalday |default_if_none:""}} | {{ read_through.finish_date | naturalday |default_if_none:""}} | {% if ratings %}{% include 'snippets/stars.html' with rating=ratings|dict_key:book.id %} | {% endif %} {% if shelf.user == request.user %}{% include 'snippets/shelf_selector.html' with current=shelf %} | {% endif %}
{% trans "This shelf is empty." %}
{% if shelf.id and shelf.editable %} {% endif %} {% endif %}