2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="discover load-more">
|
|
|
|
<h2>{{title}}</h2>
|
|
|
|
<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 %}
|
2019-07-13 18:45:48 +00:00
|
|
|
<a href="{{ url_for('web.show_book', book_id=entry.id) }}" data-toggle="modal" data-target="#bookDetailsModal" data-remote="false">
|
|
|
|
<img src="{{ url_for('web.get_cover', book_id=entry.id) }}" alt="{{ entry.title }}" />
|
2015-08-02 18:59:11 +00:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="meta">
|
2019-07-13 18:45:48 +00:00
|
|
|
<a href="{{ url_for('web.show_book', book_id=entry.id) }}" data-toggle="modal" data-target="#bookDetailsModal" data-remote="false">
|
2018-10-09 11:52:16 +00:00
|
|
|
<p class="title">{{entry.title|shortentitle}}</p>
|
|
|
|
</a>
|
2018-02-04 06:37:40 +00:00
|
|
|
<p class="author">
|
|
|
|
{% for author in entry.authors %}
|
2019-03-10 18:26:39 +00:00
|
|
|
{% if loop.index > g.config_authors_max and g.config_authors_max != 0 %}
|
2019-02-25 18:27:59 +00:00
|
|
|
{% if not loop.first %}
|
|
|
|
<span class="author-hidden-divider">&</span>
|
|
|
|
{% endif %}
|
2019-07-13 18:45:48 +00:00
|
|
|
<a class="author-name author-hidden" href="{{url_for('web.books_list', data='author', sort='new', book_id=author.id) }}">{{author.name.replace('|',',')|shortentitle(30)}}</a>
|
2019-02-25 18:27:59 +00:00
|
|
|
{% if loop.last %}
|
2019-03-10 18:26:39 +00:00
|
|
|
<a href="#" class="author-expand" data-authors-max="{{g.config_authors_max}}" data-collapse-caption="({{_('reduce')}})">(...)</a>
|
2019-02-25 18:27:59 +00:00
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% if not loop.first %}
|
|
|
|
<span>&</span>
|
|
|
|
{% endif %}
|
2019-07-13 18:45:48 +00:00
|
|
|
<a class="author-name" href="{{url_for('web.books_list', data='author', sort='new', book_id=author.id) }}">{{author.name.replace('|',',')|shortentitle(30)}}</a>
|
2018-02-04 06:37:40 +00:00
|
|
|
{% 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 %}
|