2020-03-30 22:03:21 +00:00
|
|
|
{% extends 'layout.html' %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2021-02-28 18:00:36 +00:00
|
|
|
|
|
|
|
{% block title %}{% blocktrans with book_title=work.title %}Editions of {{ book_title }}{% endblocktrans %}{% endblock %}
|
|
|
|
|
2020-03-30 22:03:21 +00:00
|
|
|
{% block content %}
|
2020-09-29 20:11:52 +00:00
|
|
|
<div class="block">
|
2021-03-15 22:08:20 +00:00
|
|
|
<h1 class="title">{% blocktrans with work_path=work.local_path work_title=work.title %}Editions of <a href="{{ work_path }}">"{{ work_title }}"</a>{% endblocktrans %}</h1>
|
2020-09-29 20:11:52 +00:00
|
|
|
|
2020-09-30 03:44:33 +00:00
|
|
|
{% include 'snippets/book_tiles.html' with books=editions %}
|
2020-03-30 22:03:21 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|