bookwyrm/fedireads/templates/import_results.html

27 lines
669 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<h1>Search results</h1>
{% for book in results %}
<div>
<a href="{{ book.absolute_id }}">
{% include 'snippets/book_cover.html' with book=book %}
</a>
{{ book.title }}
{{ book.author }}
{% include 'snippets/shelve_button.html' with book=book pulldown=True %}
</div>
{% endfor %}
<h1>Failures</h1>
<ul>
{% for book in failures %}
<li>
{{ book }}
</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}