bookwyrm-mastodon/fedireads/templates/editions.html

19 lines
556 B
HTML
Raw Normal View History

2020-03-30 18:03:21 -04:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="content-container">
2020-05-03 20:53:14 -04:00
<h2>Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h2>
2020-05-03 18:46:33 -04:00
<ol class="book-grid row wrap">
2020-03-30 18:03:21 -04:00
{% for book in editions %}
2020-05-03 18:46:33 -04:00
<li class="book-preview">
2020-05-03 21:07:06 -04:00
<a href="/book/{{ book.id }}">
2020-05-03 21:15:03 -04:00
{% include 'snippets/book_cover.html' with book=book %}
2020-03-30 18:03:21 -04:00
</a>
{% include 'snippets/shelve_button.html' with book=book %}
2020-05-03 18:46:33 -04:00
</li>
2020-03-30 18:03:21 -04:00
{% endfor %}
2020-05-03 18:46:33 -04:00
</ol>
2020-03-30 18:03:21 -04:00
</div>
{% endblock %}