2017-07-06 16:21:35 +00:00
{% extends is_xhr|yesno("fragment.html", "layout.html") %}
2015-08-02 18:59:11 +00:00
{% block body %}
< div class = "single" >
2023-03-25 11:34:16 +00:00
< div class = "row" >
< div class = "col-sm-3 col-lg-3 col-xs-5" >
< div class = "cover" >
<!-- Always use full - sized image for the detail page -->
< img id = "detailcover" title = "{{ entry.title }}"
src="{{ url_for('web.get_cover', book_id=entry.id, resolution='og', c=entry|last_modified) }}"/>
2017-07-08 09:01:40 +00:00
< / div >
2023-03-25 11:34:16 +00:00
< / div >
< div class = "col-sm-9 col-lg-9 book-meta" >
< div class = "btn-toolbar" role = "toolbar" >
2023-03-26 06:19:36 +00:00
< div class = "btn-group" role = "group" aria-label = "Download, send to eReader, reading" >
2023-03-25 11:34:16 +00:00
{% if current_user.role_download() %}
{% if entry.data|length %}
< div class = "btn-group" role = "group" >
{% if entry.data|length < 2 % }
< button id = "Download" type = "button" class = "btn btn-primary" >
{{ _('Download') }} :
< / button >
{% for format in entry.data %}
2024-08-13 17:40:32 +00:00
< a href = "{{ url_for('web.download_link', book_id=entry.id, book_format=format.format|lower, anyname=entry.id|string+'.'+format.format|lower|replace('kepub', 'kepub.epub')) }}"
2023-03-25 11:34:16 +00:00
id="btnGroupDrop1{{ format.format|lower }}" class="btn btn-primary"
role="button">
< span class = "glyphicon glyphicon-download" > < / span > {{ format.format }}
({{ format.uncompressed_size|filesizeformat }})
< / a >
{% endfor %}
{% else %}
< button id = "btnGroupDrop1" type = "button" class = "btn btn-primary dropdown-toggle"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
< span class = "glyphicon glyphicon-download" > < / span > {{ _('Download') }}
< span class = "caret" > < / span >
< / button >
< ul class = "dropdown-menu" aria-labelledby = "btnGroupDrop1" >
{% for format in entry.data %}
< li >
2024-08-13 17:40:32 +00:00
< a href = "{{ url_for('web.download_link', book_id=entry.id, book_format=format.format|lower, anyname=entry.id|string+'.'+format.format|lower|replace('kepub', 'kepub.epub')) }}" > {{ format.format }}
2023-03-25 11:34:16 +00:00
({{ format.uncompressed_size|filesizeformat }})< / a > < / li >
{% endfor %}
< / ul >
{% endif %}
< / div >
{% endif %}
2023-07-29 13:15:38 +00:00
{% if current_user.kindle_mail and entry.email_share_list %}
< input type = "hidden" name = "csrf_token" value = "{{ csrf_token() }}" >
{% if entry.email_share_list.__len__() == 1 %}
< div class = "btn-group" role = "group" >
< button id = "sendbtn" class = "btn btn-primary sendbtn-form" data-href = "{{url_for('web.send_to_ereader', book_id=entry.id, book_format=entry.email_share_list[0]['format'], convert=entry.email_share_list[0]['convert'])}}" >
< span class = "glyphicon glyphicon-send" > < / span > {{entry.email_share_list[0]['text']}}
< / button >
< / div >
{% else %}
< div class = "btn-group" role = "group" >
< button id = "sendbtn2" type = "button" class = "btn btn-primary dropdown-toggle"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
< span class = "glyphicon glyphicon-send" > < / span > {{ _('Send to eReader') }}
< span class = "caret" > < / span >
< / button >
< ul class = "dropdown-menu" aria-labelledby = "send-to-ereader" >
{% for format in entry.email_share_list %}
< li >
< a class = "sendbtn-form" data-href = "{{url_for('web.send_to_ereader', book_id=entry.id, book_format=format['format'], convert=format['convert'])}}" > {{ format['text'] }}< / a >
< / li >
{% endfor %}
< / ul >
< / div >
{% endif %}
2023-03-25 11:34:16 +00:00
{% endif %}
{% endif %}
{% if entry.reader_list and current_user.role_viewer() %}
< div class = "btn-group" role = "group" >
{% if entry.reader_list|length > 1 %}
< button id = "read-in-browser" type = "button" class = "btn btn-primary dropdown-toggle"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
< span class = "glyphicon glyphicon-book" > < / span > {{ _('Read in Browser') }}
< span class = "caret" > < / span >
< / button >
< ul class = "dropdown-menu" aria-labelledby = "read-in-browser" >
{% for format in entry.reader_list %}
< li > < a target = "_blank"
href="{{ url_for('web.read_book', book_id=entry.id, book_format=format) }}">{{ format }}< / a >
< / li >
{% endfor %}
< / ul >
{% else %}
< a target = "_blank"
href="{{ url_for('web.read_book', book_id=entry.id, book_format=entry.reader_list[0]) }}"
id="readbtn" class="btn btn-primary" role="button">< span
class="glyphicon glyphicon-book">< / span > {{ _('Read in Browser') }}
- {{ entry.reader_list[0] }}< / a >
{% endif %}
< / div >
{% endif %}
{% if entry.audio_entries|length > 0 and current_user.role_viewer() %}
< div class = "btn-group" role = "group" >
{% if entry.audio_entries|length > 1 %}
< button id = "listen-in-browser" type = "button" class = "btn btn-primary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
< span class = "glyphicon glyphicon-music" > < / span > {{ _('Listen in Browser') }}
< span class = "caret" > < / span >
< / button >
< ul class = "dropdown-menu" aria-labelledby = "listen-in-browser" >
{% for format in entry.reader_list %}
< li > < a target = "_blank" href = "{{ url_for('web.read_book', book_id=entry.id, book_format=format) }}" > {{ format }}< / a >
< / li >
{% endfor %}
< / ul >
< ul class = "dropdown-menu" aria-labelledby = "listen-in-browser" >
2019-07-13 18:45:48 +00:00
2023-03-25 11:34:16 +00:00
{% for format in entry.data %}
{% if format.format|lower in entry.audio_entries %}
< li > < a target = "_blank"
href="{{ url_for('web.read_book', book_id=entry.id, book_format=format.format|lower) }}">{{ format.format|lower }}< / a >
< / li >
{% endif %}
{% endfor %}
< / ul >
{% else %}
< a target = "_blank" href = "{{ url_for('web.read_book', book_id=entry.id, book_format=entry.audio_entries[0]) }}" id = "listenbtn" class = "btn btn-primary" role = "button" > < span class = "glyphicon glyphicon-music" > < / span > {{ _('Listen in Browser') }} - {{ entry.audio_entries[0] }}< / a >
{% endif %}
< / div >
2019-07-13 18:45:48 +00:00
{% endif %}
2023-03-25 11:34:16 +00:00
< / div >
< / div >
< h2 id = "title" > {{ entry.title }}< / h2 >
< p class = "author" >
{% for author in entry.ordered_authors %}
< a href = "{{ url_for('web.books_list', data='author', sort_param='stored', book_id=author.id ) }}" > {{ author.name.replace('|',',') }}< / a >
{% if not loop.last %}
&
{% endif %}
{% endfor %}
< / p >
{% if entry.ratings.__len__() > 0 %}
< div class = "rating" >
< p >
{% 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-empty" > < / span >
{% endfor %}
{% endif %}
{% endfor %}
< / p >
< / div >
2015-08-02 18:59:11 +00:00
{% endif %}
2023-03-25 11:34:16 +00:00
{% if entry.series|length > 0 %}
< p > {{ _("Book %(index)s of %(range)s", index=entry.series_index | formatfloat(2), range=(url_for('web.books_list', data='series', sort_param='stored', book_id=entry.series[0].id)|escapedlink(entry.series[0].name))|safe) }}< / p >
2021-08-01 15:09:29 +00:00
2023-03-25 11:34:16 +00:00
{% endif %}
2015-08-02 18:59:11 +00:00
2023-03-26 06:19:36 +00:00
{% if entry.languages|length > 0 %}
2023-03-25 11:34:16 +00:00
< div class = "languages" >
< p >
2023-03-26 06:19:36 +00:00
< span class = "label label-default" > {{_('Language')}}: {% for language in entry.languages %}{{language.language_name}}{% if not loop.last %}, {% endif %}{% endfor %}< / span >
2023-03-25 11:34:16 +00:00
< / p >
< / div >
{% endif %}
2015-10-12 23:21:46 +00:00
2023-03-25 11:34:16 +00:00
{% if entry.identifiers|length > 0 %}
< div class = "identifiers" >
< p >
< span class = "glyphicon glyphicon-link" > < / span >
{% for identifier in entry.identifiers %}
2023-07-29 09:10:54 +00:00
< a href = "{{ identifier|escape }}" target = "_blank" class = "btn btn-xs btn-success"
2023-03-25 11:34:16 +00:00
role="button">{{ identifier.format_type() }}< / a >
{% endfor %}
< / p >
< / div >
{% endif %}
2016-12-27 09:36:06 +00:00
2023-03-25 11:34:16 +00:00
{% if entry.tags|length > 0 %}
2017-07-09 10:41:09 +00:00
2023-03-25 11:34:16 +00:00
< div class = "tags" >
< p >
< span class = "glyphicon glyphicon-tags" > < / span >
2017-04-12 07:53:32 +00:00
2023-03-25 11:34:16 +00:00
{% for tag in entry.tags %}
< a href = "{{ url_for('web.books_list', data='category', sort_param='stored', book_id=tag.id) }}"
class="btn btn-xs btn-info" role="button">{{ tag.name }}< / a >
{% endfor %}
< / p >
2017-07-09 10:41:09 +00:00
2023-03-25 11:34:16 +00:00
< / div >
{% endif %}
2018-09-30 16:30:24 +00:00
2023-03-25 11:34:16 +00:00
{% if entry.publishers|length > 0 %}
< div class = "publishers" >
< p >
< span > {{ _('Publisher') }}:
< a href = "{{ url_for('web.books_list', data='publisher', sort_param='stored', book_id=entry.publishers[0].id ) }}" > {{ entry.publishers[0].name }}< / a >
< / span >
< / p >
< / div >
{% endif %}
2018-09-30 16:30:24 +00:00
2023-03-25 11:34:16 +00:00
{% if (entry.pubdate|string)[:10] != '0101-01-01' %}
< div class = "publishing-date" >
< p > {{ _('Published') }}: {{ entry.pubdate|formatdate }} < / p >
< / div >
{% endif %}
{% if cc|length > 0 %}
2017-07-09 10:41:09 +00:00
2019-05-30 07:19:37 +00:00
2023-03-25 11:34:16 +00:00
{% for c in cc %}
2024-01-01 19:38:05 +00:00
{% if entry['custom_column_' ~ c.id]|length > 0 %}
< div class = "real_custom_columns" >
2023-03-25 11:34:16 +00:00
{{ c.name }}:
{% for column in entry['custom_column_' ~ c.id] %}
{% if c.datatype == 'rating' %}
{{ (column.value / 2)|formatfloat }}
{% else %}
{% if c.datatype == 'bool' %}
{% if column.value == true %}
< span class = "glyphicon glyphicon-ok" > < / span >
{% else %}
< span class = "glyphicon glyphicon-remove" > < / span >
{% endif %}
{% else %}
{% if c.datatype == 'float' %}
{{ column.value|formatfloat(2) }}
{% elif c.datatype == 'datetime' %}
{{ column.value|formatdate }}
{% elif c.datatype == 'comments' %}
{{ column.value|safe }}
{% elif c.datatype == 'series' %}
{{ '%s [%s]' % (column.value, column.extra|formatfloat(2)) }}
{% elif c.datatype == 'text' %}
{{ column.value.strip() }}{% if not loop.last %}, {% endif %}
{% else %}
{{ column.value }}
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
2024-01-01 19:38:05 +00:00
< / div >
{% endif %}
2023-03-25 11:34:16 +00:00
{% endfor %}
{% endif %}
{% if not current_user.is_anonymous %}
2017-07-09 10:41:09 +00:00
2023-03-25 11:34:16 +00:00
< div class = "custom_columns" >
< p >
< form id = "have_read_form" action = "{{ url_for('web.toggle_read', book_id=entry.id) }}"
method="POST">
< input type = "hidden" name = "csrf_token" value = "{{ csrf_token() }}" >
< label class = "block-label" >
< input id = "have_read_cb" data-checked = "{{ _('Mark As Unread') }}"
data-unchecked="{{ _('Mark As Read') }}" type="checkbox"
{% if entry.read_status %}checked{% endif %}>
2024-06-23 11:47:54 +00:00
< span data-toggle = "tooltip" title = "{{_('Mark Book as Read or Unread')}}" > {{ _('Read') }}< / span >
2023-03-25 11:34:16 +00:00
< / label >
< / form >
< / p >
{% if current_user.check_visibility(32768) %}
< p >
< form id = "archived_form" action = "{{ url_for('web.toggle_archived', book_id=entry.id) }}"
method="POST">
< input type = "hidden" name = "csrf_token" value = "{{ csrf_token() }}" >
< label class = "block-label" >
< input id = "archived_cb" data-checked = "{{ _('Restore from archive') }}"
data-unchecked="{{ _('Add to archive') }}" type="checkbox"
{% if entry.is_archived %}checked{% endif %}>
2024-06-23 11:47:54 +00:00
< span data-toggle = "tooltip" title = "{{_('Mark Book as archived or not, to hide it in Calibre-Web and delete it from Kobo Reader')}}" > {{ _('Archive') }}< / span >
2023-03-25 11:34:16 +00:00
< / label >
< / form >
< / p >
{% endif %}
< / div >
{% endif %}
2017-04-12 07:53:32 +00:00
2015-08-02 18:59:11 +00:00
2023-03-25 11:34:16 +00:00
{% if entry.comments|length > 0 and entry.comments[0].text|length > 0 %}
< div class = "comments" >
< h3 id = "decription" > {{ _('Description:') }}< / h3 >
{{ entry.comments[0].text|safe }}
< / div >
{% endif %}
2015-08-02 18:59:11 +00:00
2017-01-12 19:43:36 +00:00
2023-03-25 11:34:16 +00:00
< div class = "more-stuff" >
2017-07-09 10:41:09 +00:00
2023-03-25 11:34:16 +00:00
{% if current_user.is_authenticated %}
{% if current_user.shelf.all() or g.shelves_access %}
< div id = "shelf-actions" class = "btn-toolbar" role = "toolbar" >
< div class = "btn-group" role = "group" aria-label = "Add to shelves" >
< button id = "add-to-shelf" type = "button"
class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
< span class = "glyphicon glyphicon-list" > < / span > {{ _('Add to shelf') }}
< span class = "caret" > < / span >
< / button >
< ul id = "add-to-shelves" class = "dropdown-menu" aria-labelledby = "add-to-shelf" >
{% for shelf in g.shelves_access %}
{% if not shelf.id in books_shelfs and ( not shelf.is_public or current_user.role_edit_shelfs() ) %}
< li >
< a data-href = "{{ url_for('shelf.add_to_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
data-remove-href="{{ url_for('shelf.remove_from_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
data-shelf-action="add"
>
{{ shelf.name }}{% if shelf.is_public == 1 %}
{{ _('(Public)') }}{% endif %}
< / a >
< / li >
{% endif %}
{% endfor %}
< / ul >
< / div >
< div id = "remove-from-shelves" class = "btn-group" role = "group"
aria-label="Remove from shelves">
{% if books_shelfs %}
{% for shelf in g.shelves_access %}
{% if shelf.id in books_shelfs %}
< a data-href = "{{ url_for('shelf.remove_from_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
data-add-href="{{ url_for('shelf.add_to_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
class="btn btn-sm btn-default" role="button"
data-shelf-action="remove"
>
< span { % if not shelf . is_public or current_user . role_edit_shelfs ( ) % }
class="glyphicon glyphicon-remove"
{% endif %}>< / span > {{ shelf.name }}{% if shelf.is_public == 1 %} {{ _('(Public)') }}{% endif %}
< / a >
{% endif %}
{% endfor %}
{% endif %}
< / div >
< div id = "shelf-action-errors" class = "pull-left" role = "alert" > < / div >
< / div >
{% endif %}
2017-07-09 10:41:09 +00:00
2023-03-25 11:34:16 +00:00
{% endif %}
{% if current_user.role_edit() %}
2024-02-26 14:07:59 +00:00
< div class = "col-sm-12" >
2023-03-25 11:34:16 +00:00
< div class = "btn-group" role = "group" aria-label = "Edit/Delete book" >
< a href = "{{ url_for('edit-book.show_edit_book', book_id=entry.id) }}"
class="btn btn-sm btn-primary" id="edit_book" role="button">< span
class="glyphicon glyphicon-edit">< / span > {{ _('Edit Metadata') }}< / a >
< / div >
2024-02-26 14:07:59 +00:00
< div class = "btn btn-default" data-back = "{{ url_for('web.index') }}" id = "back" > {{_('Cancel')}}< / div >
< / div >
2023-03-25 11:34:16 +00:00
{% endif %}
2017-07-09 10:41:09 +00:00
< / div >
2015-08-02 18:59:11 +00:00
< / div >
2017-07-22 03:42:01 +00:00
< / div >
2015-08-02 18:59:11 +00:00
{% endblock %}
2017-02-19 20:08:22 +00:00
{% block js %}
2017-08-13 05:24:56 +00:00
< script type = "text/template" id = "template-shelf-add" >
2023-03-25 11:34:16 +00:00
< li >
< a data-href = "<%= add %>" data-remove-href = "<%= remove %>" data-shelf-action = "add" >
< %= content %>
< / a >
< / li >
2017-08-13 05:24:56 +00:00
< / script >
< script type = "text/template" id = "template-shelf-remove" >
2023-03-25 11:34:16 +00:00
< a data-href = "<%= remove %>" data-add-href = "<%= add %>" class = "btn btn-sm btn-default"
data-shelf-action="remove">
< span class = "glyphicon glyphicon-remove" > < / span > < %= content %>
< / a >
2017-08-13 05:24:56 +00:00
< / script >
2017-07-22 03:42:01 +00:00
< script src = "{{ url_for('static', filename='js/details.js') }}" > < / script >
2021-05-26 17:40:41 +00:00
< script src = "{{ url_for('static', filename='js/fullscreen.js') }}" > < / script >
2023-03-25 11:34:16 +00:00
< script type = "text/javascript" >
< / script >
2017-02-19 20:08:22 +00:00
{% endblock %}