{% extends 'import/import_status.html' %} {% load i18n %} {% load utilities %} {% block title %}{% trans "Import Troubleshooting" %}{% endblock %} {% block page_title %} {% trans "Review items" %} {% endblock %} {% block actions %}

{% trans "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." %}

{% endblock %} {% block table_headers %} {% trans "Row" %} {% trans "Title" %} {% trans "ISBN" %} {% trans "Author" %} {% trans "Actions" %} {% endblock %} {% block table_row %} {{ item.index }} {{ item.normalized_data.title }} {{ item.isbn }} {{ item.normalized_data.authors }}
{% csrf_token %}
{% csrf_token %}
{% with guess=item.book_guess %}
{% include 'snippets/book_cover.html' with book=guess cover_class='is-h-s' size='small' %}
{% include 'snippets/book_titleby.html' with book=guess %}
{% endwith %}
{% endblock %}