1
0
Fork 0
bookwyrm/bookwyrm/templates/editions.html

11 lines
274 B
HTML
Raw Normal View History

2020-03-30 15:03:21 -07:00
{% extends 'layout.html' %}
2020-12-12 18:25:04 -08:00
{% load bookwyrm_tags %}
2020-03-30 15:03:21 -07:00
{% block content %}
2020-09-29 13:11:52 -07:00
<div class="block">
2020-11-09 12:06:44 -08:00
<h1 class="title">Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h1>
2020-09-29 13:11:52 -07:00
{% include 'snippets/book_tiles.html' with books=editions %}
2020-03-30 15:03:21 -07:00
</div>
{% endblock %}