{% extends 'layout.html' %} {% load i18n %} {% load humanize %} {% load static %} {% block title %}{% trans "Import Status" %}{% endblock %} {% block content %}{% spaceless %}
{% trans "Import still in progress." %}
{% trans "(Hit reload to update!)" %}
{% trans "Book" %} | {% trans "Title" %} | {% trans "Author" %} | |
---|---|---|---|
{% if item.book %} {% include 'snippets/book_cover.html' with book=item.book cover_class='is-h-s' %} {% endif %} | {{ item.data.Title }} | {{ item.data.Author }} | {% if item.book %} {% trans "Imported" %} {% endif %} |