moviewyrm/bookwyrm/templates/editions.html
2020-12-12 18:25:57 -08:00

11 lines
274 B
HTML

{% extends 'layout.html' %}
{% load bookwyrm_tags %}
{% 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 %}