{% extends 'layout.html' %} {% load i18n %} {% load book_display_tags %} {% block title %}{{ series_name }}{% endblock %} {% block content %}

{{ series_name }}

{% trans "Series by" %} {{ author.name }}
{% for book in books %} {% with book=book %} {# @todo Set `hasPart` property in some meaningful way #}
{% if book.series_number %}{% blocktrans with series_number=book.series_number %}Book {{ series_number }}{% endblocktrans %}{% else %}{% trans 'Unsorted Book' %}{% endif %} {% include 'landing/small-book.html' with book=book %}
{% endwith %} {% endfor %}
{% endblock %}