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

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

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

{% else %}

{{entries|length}} {{_('Results for:')}} {{searchterm}}

{% if g.user.is_authenticated %} {% if g.user.shelf.all() or g.public_shelfes %} {% endif %} {% endif %}
?
{{_('All')}}
{% endif %}
{% for entry in entries %}
{% if entry.has_cover is defined %} {{ entry.title }} {% endif %}

{{entry.title|shortentitle}}

{% for author in entry.authors %} {% if loop.index > g.config_authors_max and g.config_authors_max != 0 %} {% if not loop.first %} & {% endif %} {{author.name.replace('|',',')|shortentitle(30)}} {% if loop.last %} (...) {% endif %} {% else %} {% if not loop.first %} & {% endif %} {{author.name.replace('|',',')|shortentitle(30)}} {% endif %} {% endfor %} {% for format in entry.data %} {% if format.format|lower == 'mp3' %} {% endif %} {% endfor %}

{% if entry.ratings.__len__() > 0 %}
{% for number in range((entry.ratings[0].rating/2)|int(2)) %} {% if loop.last and loop.index < 5 %} {% for numer in range(5 - loop.index) %} {% endfor %} {% endif %} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}