{% 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/editions/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 %}

{% trans "Can't find the edition you're looking for?" %}

{% csrf_token %} {{ work_form.title }} {{ work_form.subtitle }} {{ work_form.authors }} {{ work_form.description }} {{ work_form.languages }} {{ work_form.series }} {{ work_form.cover }} {{ work_form.first_published_date }} {% for subject in work.subjects %} {% endfor %}
{% endblock %}