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

{{title}}

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