forked from mirrors/bookwyrm
10 lines
274 B
HTML
10 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 %}
|
|
|