{% load i18n %} {% load utilities %} {% load cache %} {% spaceless %} {% get_current_language as LANGUAGE_CODE %} {# 10 second cache #} {% cache 10 titleby LANGUAGE_CODE book.id %} {% if book.authors.exists %} {% blocktrans trimmed with path=book.local_path title=book|book_title %} {{ title }} by {% endblocktrans %} {% include 'snippets/authors.html' with book=book limit=3 %} {% else %} {{ book|book_title }} {% endif %} {% include 'snippets/book_series.html' with book=book %} {% endcache %} {% endspaceless %}