{% for author in book.authors %}{{ author.name }}{% if not forloop.last %}, {% endif %}{% endfor %}
{{ book.title }}
{% if book.translators.exists %}{% for translator in book.translators.all %} {% if forloop.first and translator.name != 'tłumacz nieznany' %} {% trans "tłum." %} {% endif %} {{ translator }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}