moviewyrm/bookwyrm/templates/editions.html

11 lines
271 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>
{% include 'snippets/book_tiles.html' with books=editions %}
2020-03-30 22:03:21 +00:00
</div>
{% endblock %}