2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
2017-01-28 19:16:40 +00:00
|
|
|
{% if g.user.show_detail_random() %}
|
2015-08-02 18:59:11 +00:00
|
|
|
<div class="discover">
|
2016-11-09 18:24:33 +00:00
|
|
|
<h2>{{_('Discover (Random Books)')}}</h2>
|
2015-08-02 18:59:11 +00:00
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
{% for entry in random %}
|
2017-10-08 08:41:43 +00:00
|
|
|
<div class="col-sm-3 col-lg-2 col-xs-6 book" id="books_rand">
|
2015-08-02 18:59:11 +00:00
|
|
|
<div class="cover">
|
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-01-21 16:04:36 +00:00
|
|
|
{% if entry.has_cover %}
|
2017-07-29 03:01:31 +00:00
|
|
|
<img src="{{ url_for('get_cover', cover_path=entry.path.replace('\\','/')) }}" alt="{{ entry.title }}" />
|
2017-01-21 16:04:36 +00:00
|
|
|
{% else %}
|
2017-07-29 03:01:31 +00:00
|
|
|
<img src="{{ url_for('static', filename='generic_cover.jpg') }}" alt="{{ entry.title }}" />
|
2017-01-21 16:04:36 +00:00
|
|
|
{% endif %}
|
2015-08-02 18:59:11 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="meta">
|
2018-10-09 11:52:16 +00:00
|
|
|
<a href="{{ url_for('show_book', book_id=entry.id) }}" data-toggle="modal" data-target="#bookDetailsModal" data-remote="false">
|
|
|
|
<p class="title">{{entry.title|shortentitle}}</p>
|
|
|
|
</a>
|
2018-09-02 09:48:58 +00:00
|
|
|
<p class="author">
|
|
|
|
{% for author in entry.authors %}
|
|
|
|
<a href="{{url_for('author', book_id=author.id) }}">{{author.name.replace('|',',')|shortentitle(30)}}</a>
|
|
|
|
{% 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>
|
2016-03-26 15:12:29 +00:00
|
|
|
{% endif %}
|
2015-08-02 18:59:11 +00:00
|
|
|
<div class="discover load-more">
|
|
|
|
<h2>{{title}}</h2>
|
|
|
|
<div class="row">
|
2017-03-07 18:10:17 +00:00
|
|
|
{% if entries[0] %}
|
2015-08-02 18:59:11 +00:00
|
|
|
{% for entry in entries %}
|
2017-10-08 08:41:43 +00:00
|
|
|
<div class="col-sm-3 col-lg-2 col-xs-6 book" id="books">
|
2015-08-02 18:59:11 +00:00
|
|
|
<div class="cover">
|
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-01-21 16:04:36 +00:00
|
|
|
{% if entry.has_cover %}
|
2017-07-29 03:01:31 +00:00
|
|
|
<img src="{{ url_for('get_cover', cover_path=entry.path.replace('\\','/')) }}" alt="{{ entry.title }}"/>
|
2017-01-21 16:04:36 +00:00
|
|
|
{% else %}
|
2017-07-29 03:01:31 +00:00
|
|
|
<img src="{{ url_for('static', filename='generic_cover.jpg') }}" alt="{{ entry.title }}" />
|
2017-01-21 16:04:36 +00:00
|
|
|
{% endif %}
|
2015-08-02 18:59:11 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="meta">
|
2018-10-09 11:52:16 +00:00
|
|
|
<a href="{{ url_for('show_book', book_id=entry.id) }}" data-toggle="modal" data-target="#bookDetailsModal" data-remote="false">
|
|
|
|
<p class="title">{{entry.title|shortentitle}}</p>
|
|
|
|
</a>
|
2016-04-15 21:35:18 +00:00
|
|
|
<p class="author">
|
|
|
|
{% for author in entry.authors %}
|
2018-07-17 16:24:12 +00:00
|
|
|
<a href="{{url_for('author', book_id=author.id) }}">{{author.name.replace('|',',')|shortentitle(30)}}</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 %}
|
2017-03-07 18:10:17 +00:00
|
|
|
{% endif %}
|
2015-08-02 18:59:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|