2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="discover">
|
|
|
|
|
|
|
|
{% if entries|length < 1 %}
|
2016-11-09 18:24:33 +00:00
|
|
|
<h2>{{_('No Results for:')}} {{searchterm}}</h2>
|
|
|
|
<p>{{_('Please try a diffrent Search')}}</p>
|
2015-08-02 18:59:11 +00:00
|
|
|
{% else %}
|
2016-11-09 18:24:33 +00:00
|
|
|
<h2>{{entries|length}} {{_('Results for:')}} {{searchterm}}</h2>
|
2015-08-02 18:59:11 +00:00
|
|
|
{%endif%}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
{% for entry in entries %}
|
|
|
|
<div class="col-sm-3 col-lg-2 col-xs-6 book">
|
|
|
|
<div class="cover">
|
|
|
|
{% if entry.has_cover is defined %}
|
2017-07-06 16:21:35 +00:00
|
|
|
<a href="{{ url_for('show_book', book_id=entry.id) }}" data-toggle="modal" data-target="#bookDetailsModal" data-remote="false">
|
2017-02-02 18:36:31 +00:00
|
|
|
<img src="{{ url_for('get_cover', cover_path=entry.path.replace('\\','/')) }}" />
|
2015-08-02 18:59:11 +00:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="meta">
|
2016-04-03 21:33:29 +00:00
|
|
|
<p class="title">{{entry.title|shortentitle}}</p>
|
2016-04-15 21:35:18 +00:00
|
|
|
<p class="author">
|
|
|
|
{% for author in entry.authors %}
|
2017-04-02 08:05:07 +00:00
|
|
|
<a href="{{url_for('author', book_id=author.id ) }}">{{author.name}}</a>
|
2016-04-15 21:35:18 +00:00
|
|
|
{% if not loop.last %}
|
|
|
|
&
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2015-08-02 18:59:11 +00:00
|
|
|
{% if entry.ratings.__len__() > 0 %}
|
|
|
|
<div class="rating">
|
|
|
|
{% for number in range((entry.ratings[0].rating/2)|int(2)) %}
|
|
|
|
<span class="glyphicon glyphicon-star good"></span>
|
|
|
|
{% if loop.last and loop.index < 5 %}
|
|
|
|
{% for numer in range(5 - loop.index) %}
|
|
|
|
<span class="glyphicon glyphicon-star"></span>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|