moviewyrm/bookwyrm/templates/import/manual_review.html

73 lines
2.2 KiB
HTML
Raw Normal View History

2021-11-13 00:23:56 +00:00
{% extends 'import/import_status.html' %}
{% load i18n %}
{% load utilities %}
{% block title %}{% trans "Import Troubleshooting" %}{% endblock %}
{% block page_title %}
{% trans "Review items" %}
{% endblock %}
{% block actions %}
<div class="block">
<div class="notification content">
<p>
{% trans "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." %}
</p>
</div>
</div>
{% endblock %}
2021-11-13 17:34:10 +00:00
{% block import_cols_headers %}
2021-11-13 00:23:56 +00:00
<th>
{% trans "Actions" %}
</th>
{% endblock %}
2021-11-13 17:34:10 +00:00
{% block index_col %}
2021-11-13 00:23:56 +00:00
<td rowspan="2">
{{ item.index }}
</td>
2021-11-13 17:34:10 +00:00
{% endblock %}
{% block import_cols %}
2021-11-13 17:22:35 +00:00
<td>
<div class="content is-flex">
<form class="pr-2" name="approve-{{ item.id }}" method="POST" action="{% url 'import-approve' job.id item.id %}">
{% csrf_token %}
<button type="submit" class="button is-success">
<span class="icon icon-check" aria-hidden="true"></span>
<span class="is-sr-only-mobile">{% trans "Approve" %}</span>
</button>
</form>
2021-11-13 01:10:47 +00:00
2021-11-13 17:22:35 +00:00
<form name="delete-{{ item.id }}" method="POST" action="{% url 'import-delete' job.id item.id %}">
{% csrf_token %}
<button type="submit" class="button is-danger is-light is-outlined">
<span class="icon icon-x" aria-hidden="true"></span>
<span class="is-sr-only-mobile">{% trans "Delete" %}</span>
</button>
</form>
</div>
2021-11-13 00:23:56 +00:00
</td>
2021-11-13 17:34:10 +00:00
{% endblock %}
{% block action_row %}
2021-11-13 00:23:56 +00:00
<tr>
2021-11-13 17:34:10 +00:00
<td colspan="6">
2021-11-13 00:23:56 +00:00
<div class="columns is-mobile">
{% with guess=item.book_guess %}
<div class="column is-narrow">
<a href="{{ item.book.local_path }}" target="_blank">
{% include 'snippets/book_cover.html' with book=guess cover_class='is-h-s' size='small' %}
</a>
</div>
<div class="column">
{% include 'snippets/book_titleby.html' with book=guess %}
</div>
{% endwith %}
</div>
</td>
</tr>
{% endblock %}