{% extends "basic_layout.html" %} {% block body %} {% if entries|length < 1 %}

{{_('No Results Found')}}

{% endif %} {% for entry in entries %} {% if entry.Books.authors %} {% set author = entry.Books.authors[0].name.replace('|',',')|shortentitle(30) %} {% else %} {% set author = '' %} {% endif %}

{{ author }} - {{entry.Books.title|shortentitle}}

{% endfor %} {% endblock %}