{% extends 'lists/list_layout.html' %} {% load i18n %} {% block panel %}

{% trans "Pending Books" %}

{% trans "Go to list" %}

{% if not pending.exists %}

{% trans "You're all set!" %}

{% else %} {% for item in pending %} {% endfor %}
{% trans "Book" %} {% trans "Suggested by" %}
{% include 'snippets/book_cover.html' with book=item.book size="small" %} {% include 'snippets/book_titleby.html' with book=item.book %} {{ item.user.display_name }}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% endblock %}