moviewyrm/bookwyrm/templates/snippets/search_result_text.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2021-02-28 02:48:10 +00:00
{% load i18n %}
<div class="columns is-mobile is-gapless">
<div class="column is-cover">
2021-05-24 14:17:39 +00:00
{% include 'snippets/book_cover.html' with book=result cover_class='is-w-xs is-h-xs' external_path=True %}
</div>
2021-03-13 21:55:20 +00:00
<div class="column is-10 ml-3">
2021-03-13 21:55:20 +00:00
<p>
<strong>
<a
href="{{ result.view_link|default:result.key }}"
{% if remote_result %}
2021-08-21 17:49:35 +00:00
rel="noopener"
target="_blank"
{% endif %}
>{{ result.title }}</a>
2021-03-13 21:55:20 +00:00
</strong>
</p>
<p>
2021-03-13 21:55:20 +00:00
{% if result.author %}
{{ result.author }}
{% endif %}
{% if result.year %}
({{ result.year }})
2021-03-13 21:55:20 +00:00
{% endif %}
</p>
{% if remote_result %}
<form class="mt-1" action="/resolve-book" method="post">
{% csrf_token %}
<input type="hidden" name="remote_id" value="{{ result.key }}">
<button type="submit" class="button is-small is-link">
{% trans "Import book" %}
</button>
</form>
2021-03-13 21:55:20 +00:00
{% endif %}
</div>
</div>