#645 - displays '(public)' next to user's public shelves in OPDS feed
This commit is contained in:
parent
d77b52af96
commit
7c0d10da79
|
@ -75,7 +75,11 @@
|
|||
{% endif %}
|
||||
{% for entry in listelements %}
|
||||
<entry>
|
||||
{% if entry.__class__.__name__ == 'Shelf' and entry.is_public == 1 %}
|
||||
<title>{{entry.name}} (public)</title>
|
||||
{% else %}
|
||||
<title>{{entry.name}}</title>
|
||||
{% endif %}
|
||||
<id>{{ url_for(folder, book_id=entry.id) }}</id>
|
||||
<link rel="subsection" type="application/atom+xml;profile=opds-catalog" href="{{url_for(folder, book_id=entry.id)}}"/>
|
||||
</entry>
|
||||
|
|
Loading…
Reference in New Issue
Block a user