2021-03-29 17:21:48 +00:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load bookwyrm_tags %}
|
|
|
|
|
|
|
|
{% block title %}{% blocktrans with book_title=work.title %}Editions of {{ book_title }}{% endblocktrans %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="block">
|
|
|
|
<h1 class="title">{% blocktrans with work_path=work.local_path work_title=work.title %}Editions of <a href="{{ work_path }}">"{{ work_title }}"</a>{% endblocktrans %}</h1>
|
2021-03-29 17:58:35 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include 'book/edition_filters.html' %}
|
2021-03-29 17:21:48 +00:00
|
|
|
|
2021-03-29 17:58:35 +00:00
|
|
|
<div class="block">
|
2021-03-29 17:21:48 +00:00
|
|
|
{% for book in editions %}
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column is-2">
|
|
|
|
<a href="/book/{{ book.id }}">
|
|
|
|
{% include 'snippets/book_cover.html' with book=book size="medium" %}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="column is-7">
|
|
|
|
<h2 class="title is-5">
|
|
|
|
<a href="/book/{{ book.id }}" class="has-text-black">
|
|
|
|
{{ book.title }}
|
|
|
|
</a>
|
|
|
|
</h2>
|
2021-04-18 13:59:02 +00:00
|
|
|
|
|
|
|
{% with book=book %}
|
|
|
|
<div class="columns is-multiline">
|
|
|
|
<div class="column is-half content">
|
|
|
|
{% include 'book/publisher_info.html' %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="column is-half ">
|
|
|
|
{% include 'book/book_identifiers.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endwith %}
|
2021-03-29 17:21:48 +00:00
|
|
|
</div>
|
|
|
|
<div class="column is-3">
|
|
|
|
{% include 'snippets/shelve_button/shelve_button.html' with book=book switch_mode=True %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2021-03-29 19:13:05 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
{% include 'snippets/pagination.html' with page=editions path=request.path %}
|
|
|
|
</div>
|
2021-03-29 17:21:48 +00:00
|
|
|
{% endblock %}
|