moviewyrm/bookwyrm/templates/editions.html

30 lines
880 B
HTML
Raw Normal View History

2020-03-30 22:03:21 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
2020-09-29 20:11:52 +00:00
<div class="block">
<h2 class="title">Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h2>
<div class="tile is-ancestor">
<div class="tile is-vertical">
<div class="tile">
2020-03-30 22:03:21 +00:00
{% for book in editions %}
2020-09-29 20:11:52 +00:00
{% if forloop.counter0|divisibleby:"5" %}
</div>
<div class="tile">
{% endif %}
<div class="tile is-parent is-vertical">
<article class="tile is-child box">
<a href="/book/{{ book.id }}">
{% include 'snippets/book_cover.html' with book=book %}
</a>
{% include 'snippets/shelve_button.html' with book=book %}
</article>
</div>
2020-03-30 22:03:21 +00:00
{% endfor %}
2020-09-29 20:11:52 +00:00
</div>
</div>
2020-03-30 22:03:21 +00:00
</div>
{% endblock %}