moviewyrm/bookwyrm/templates/editions.html
2020-11-09 12:06:44 -08:00

11 lines
271 B
HTML

{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="block">
<h1 class="title">Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h1>
{% include 'snippets/book_tiles.html' with books=editions %}
</div>
{% endblock %}