{% extends "base.html" %} {% block title %}{{ cl.name }} — {{ library_name() }}{% endblock %} {% block content %} {% set _err = error or request.query_params.get('error') %} {% if _err %}
{{ _err }}
{% endif %}

{{ cl.name }}

← All Lists

Slug: {{ cl.slug }} · {% if cl.is_public %}Public{% else %}Private{% endif %} {% if cl.is_featured %} · Featured{% endif %} · Order: {{ cl.display_order }}

{% if cl.description %}

{{ cl.description }}

{% endif %}
Edit list details

Works ({{ entries | length }})

{% if entries %} {% for entry in entries %} {% endfor %}
# Work ID Title Annotation
{{ entry.display_order }} {{ entry.work_id }} {% if entry.work %}{{ entry.work.title }}{% else %}—{% endif %} {{ entry.annotation or '—' }}
{% else %}

No works in this list yet.

{% endif %}
Add a work

Enter the Work ID (numeric). You can find it in the catalog URL, e.g. /ui/catalog/42.

{% if entries %}
Reorder works

Enter work IDs as a comma-separated list in the desired order.

{% endif %}

Deleting this list is permanent and cannot be undone. Works are not affected.

{% endblock %}