{% extends "layout.html" %} {% block body %}

{{title}}

{{_('Drag to Rearrange Order')}}
{% for entry in entries %}
{% if entry['visible'] %} {{entry['Books']['title']}} {% if entry['Books']['series']|length > 0 %}
{{entry['Books']['series_index']}} - {{entry['Books']['series'][0].name}} {% endif %}
{% for author in entry['Books']['author'] %} {{author.name.replace('|',',')}} {% if not loop.last %} & {% endif %} {% endfor %} {% else %} {{_('Hidden Book')}}
{% endif %}
{% endfor %}
{{_('Back')}}
{% endblock %} {% block js %} {% endblock %}