-
9 |
- Title: {{ book.title }}{% if book.subtitle %} - {{ book.subtitle }}{% endif %} 11 |
- Author(s): {% for author in book.authors.all %}{% if not forloop.first %}{% if forloop.last %} and {% else %}, {% endif %}{% endif %}{{ author.first_name }} {{ author.last_name }}{% endfor %} 12 |
- Narrator(s): {% for narrator in book.narrators.all %}{% if not forloop.first %}{% if forloop.last %} and {% else %}, {% endif %}{% endif %}{{ narrator.first_name }} {{ narrator.last_name }}{% endfor %} 13 | {% if book.series %}
- Series: {{ book.series }} {% endif %} 14 |
- Length: {{ book_length }} 15 |
- Type: {{ book.format_type }} 16 |
- Release Date: {{ book.release_date }} 17 |
- Language: {{ book.lang }} 18 |
- Publisher: {{ book.publisher }} 19 |
-
66 | {% for message in messages %}
67 |
- {{message}} 68 | {% endfor %} 69 |