moviewyrm/bookwyrm/templates/import_status.html

72 lines
1.6 KiB
HTML
Raw Normal View History

{% extends 'layout.html' %}
{% load fr_display %}
{% load humanize %}
{% block content %}
2020-09-30 19:11:53 +00:00
<div class="block">
<h1 class="title">Import Status</h1>
2020-09-30 19:11:53 +00:00
<p>
Import started: {{ job.created_date | naturaltime }}
</p>
2020-09-30 19:11:53 +00:00
{% if task.ready %}
<p>
Import completed: {{ task.date_done | naturaltime }}
</p>
{% elif task.failed %}
<div class="notification is-danger">TASK FAILED</div>
2020-09-30 19:11:53 +00:00
{{ task.info }}
{% endif %}
</div>
2020-09-30 19:11:53 +00:00
<div class="block">
{% if not task.ready and not task.failed %}
2020-09-30 19:11:53 +00:00
Import still in progress.
<p>
(Hit reload to update!)
</p>
2020-09-30 19:11:53 +00:00
{% endif %}
</div>
2020-09-30 19:11:53 +00:00
<div class="block">
<table class="table">
<tr>
<th>
Book
</th>
<th>
Title
</th>
<th>
Author
</th>
<th>
</th>
</tr>
{% for item in items %}
<tr>
<td>
{% if item.book %}
<a href="/book/{{ item.book.id }}">
{% include 'snippets/book_cover.html' with book=item.book size='small' %}
</a>
{% endif %}
</td>
<td>
{{ item.data|dict_key:'Title' }}
</td>
<td>
{{ item.data|dict_key:'Author' }}
</td>
<td>
{% if item.book %}✓
{% elif item.fail_reason %}
{{ item.fail_reason }}
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endblock %}