mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-09 00:35:51 +00:00
27 lines
669 B
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 %}
|