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

{{title}}

{{_('Drag \'n drop 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 %}
{{_('Back')}}
{% endblock %} {% block js %} {% endblock %}