2020-03-30 18:03:21 -04:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% load fr_display %}
|
|
|
|
{% block content %}
|
2020-09-29 16:11:52 -04:00
|
|
|
<div class="block">
|
|
|
|
<h2 class="title">Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h2>
|
|
|
|
|
2020-09-29 23:44:33 -04:00
|
|
|
{% include 'snippets/book_tiles.html' with books=editions %}
|
2020-03-30 18:03:21 -04:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|