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

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

{{_('Search Term:')}} {{adv_searchterm}}

{% 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 %}