|
|
@ -16,7 +16,7 @@
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
],
|
|
|
|
],
|
|
|
|
"series": null,
|
|
|
|
"series": null,
|
|
|
|
"cover": "/opds/cover/{{entry.id}}",
|
|
|
|
"cover": "{{url_for('feed_get_cover', book_id=entry.id)}}",
|
|
|
|
"languages": [
|
|
|
|
"languages": [
|
|
|
|
{% for lang in entry.languages %}
|
|
|
|
{% for lang in entry.languages %}
|
|
|
|
"{{lang.lang_code}}"{% if not loop.last %},{% endif %}
|
|
|
|
"{{lang.lang_code}}"{% if not loop.last %},{% endif %}
|
|
|
@ -34,9 +34,9 @@
|
|
|
|
"author_sort": "{{entry.author_sort}}",
|
|
|
|
"author_sort": "{{entry.author_sort}}",
|
|
|
|
"uuid": "{{entry.uuid}}",
|
|
|
|
"uuid": "{{entry.uuid}}",
|
|
|
|
"timestamp": "{{entry.timestamp}}",
|
|
|
|
"timestamp": "{{entry.timestamp}}",
|
|
|
|
"thumbnail": "/opds/cover/{{entry.id}}",
|
|
|
|
"thumbnail": "{{url_for('feed_get_cover', book_id=entry.id)}}",
|
|
|
|
"main_format": {
|
|
|
|
"main_format": {
|
|
|
|
"{{entry.data[0].format|lower}}": "/download/{{entry.id}}/{{entry.data[0].format|lower}}"
|
|
|
|
"{{entry.data[0].format|lower}}": "{{ url_for('get_opds_download_link', book_id=entry.id, format=entry.data[0].format|lower)}}"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"rating":{% if entry.ratings.__len__() > 0 %} "{{entry.ratings[0].rating}}.0"{% else %}0.0{% endif %},
|
|
|
|
"rating":{% if entry.ratings.__len__() > 0 %} "{{entry.ratings[0].rating}}.0"{% else %}0.0{% endif %},
|
|
|
|
"authors": [
|
|
|
|
"authors": [
|
|
|
@ -47,7 +47,7 @@
|
|
|
|
"other_formats": {
|
|
|
|
"other_formats": {
|
|
|
|
{% if entry.data.__len__() > 1 %}
|
|
|
|
{% if entry.data.__len__() > 1 %}
|
|
|
|
{% for format in entry.data[1:] %}
|
|
|
|
{% for format in entry.data[1:] %}
|
|
|
|
"{{format.format|lower}}": "/download/{{entry.id}}/{{format.format|lower}}"{% if not loop.last %},{% endif %}
|
|
|
|
"{{format.format|lower}}": "{{ url_for('get_opds_download_link', book_id=entry.id, format=format.format|lower)}}"{% if not loop.last %},{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %} },
|
|
|
|
{% endif %} },
|
|
|
|
"title_sort": "{{entry.sort}}"
|
|
|
|
"title_sort": "{{entry.sort}}"
|
|
|
|