moviewyrm/bookwyrm/templates/editions.html
2020-09-29 20:44:33 -07:00

11 lines
271 B
HTML

{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<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 %}
</div>
{% endblock %}