{% extends 'layout.html' %}
{% load i18n %}
{% load humanize %}
{% load static %}
{% block title %}{% trans "Import Status" %}{% endblock %}
{% block content %}{% spaceless %}
{% trans "Retry Status" %}
{% else %}
{% trans "Import Status" %}
{% endif %}
{% trans "Back to imports" %}
{% trans "Row" %} | {% trans "Title" %} | {% trans "Author" %} | {% trans "Book" %} | {% trans "Status" %} |
---|---|---|---|---|
{{ item.index }} | {{ item.data.Title }} | {{ item.data.Author }} | {% if item.book %} {% include 'snippets/book_cover.html' with book=item.book cover_class='is-h-s' size='small' %} {% endif %} | {% if item.book %} {% trans "Imported" %} {% elif item.fail_reason %} {{ item.fail_reason }} {% else %} {% trans "Pending" %} {% endif %} |