2020-12-20 09:11:21 +00:00
|
|
|
{% from 'book_cover.html' import book_cover_image %}
|
2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="discover load-more">
|
|
|
|
<h2>{{title}}</h2>
|
2020-10-16 17:41:48 +00:00
|
|
|
<div class="row display-flex">
|
2015-08-02 18:59:11 +00:00
|
|
|
{% 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">
|
2020-12-23 09:25:25 +00:00
|
|
|
{{ book_cover_image(entry, 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 %}
|
2020-07-11 10:09:34 +00:00
|
|
|
<a class="author-name author-hidden" href="{{url_for('web.books_list', data='author', sort_param='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 %}
|
2020-07-11 10:09:34 +00:00
|
|
|
<a class="author-name" href="{{url_for('web.books_list', data='author', sort_param='new', book_id=author.id) }}">{{author.name.replace('|',',')|shortentitle(30)}}</a>
|
2018-02-04 06:37:40 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2020-05-28 04:57:59 +00:00
|
|
|
{% if entry.series.__len__() > 0 %}
|
|
|
|
<p class="series">
|
2020-10-10 10:47:49 +00:00
|
|
|
<a href="{{url_for('web.books_list', data='series', sort_param='new', book_id=entry.series[0].id )}}">
|
2020-05-28 04:57:59 +00:00
|
|
|
{{entry.series[0].name}}
|
2020-10-10 10:47:49 +00:00
|
|
|
</a>
|
2020-06-30 06:34:26 +00:00
|
|
|
({{entry.series_index|formatseriesindex}})
|
2020-05-28 04:57:59 +00:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
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) %}
|
2020-06-03 18:14:07 +00:00
|
|
|
<span class="glyphicon glyphicon-star-empty"></span>
|
2015-08-02 18:59:11 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|