{% extends 'layout.html' %} {% load i18n %}{% load utilities %} {% block title %}{% blocktrans with book_title=work|book_title %}Editions of {{ book_title }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with work_path=work.local_path work_title=work|book_title %}Editions of "{{ work_title }}"{% endblocktrans %}

{% include 'book/edition_filters.html' %}
{% for book in editions %}

{{ book|book_title }}

{% with book=book %}
{% include 'book/publisher_info.html' %}
{% include 'book/book_identifiers.html' %}
{% endwith %}
{% include 'snippets/shelve_button/shelve_button.html' with book=book switch_mode=True right=True %}
{% endfor %}
{% include 'snippets/pagination.html' with page=editions path=request.path %}
{% endblock %}