{% extends "base.html" %} {% block title %}Edit {{ work.title }} — {{ library_name() }}{% endblock %} {% block content %}

Edit work

{{ work.title }}

{% if error %}

{{ error }}

{% endif %}

ISBN, UPC, media type, and raw external metadata are not editable from this form. Fixing those typically requires a merge/split flow that Compendium doesn't offer yet. To add, remove, reorder, or rename creators, see Manage creators.

Cancel
{% set _has_lookup_key = work.isbn or work.upc or (work.external_ids and (work.external_ids.get('mbid') or work.external_ids.get('tmdb_id'))) %} {% if _has_lookup_key %}

Refresh metadata

Re-fetch this work's metadata from an external source (Google Books, Open Library, MusicBrainz, or TMDb depending on media type). You'll see a preview of what would change before anything is committed. Text fields are only filled when the current value is empty; the cover URL is replaced if upstream offers a new one.

{% if work.media_type and work.media_type.code == 'book' %} Refresh (configured: {{ book_primary_source | default('default') }}) Refresh from Google Books Refresh from Open Library {% else %} Refresh from external source {% endif %} {% endif %} {% endblock %}