{% 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 %} {% with book=item.book %}
{% trans "Suggested by" %} {{ item.user.display_name }}
{% csrf_token %}
{% csrf_token %}
{% endwith %} {% endfor %}
{% endif %}
{% endblock %}