{% from "player/_icons.html" import info_icon %}
← back ↑ albums
{% set art_url = album|album_art_url %}
{% if art_url %} {% else %} {% endif %}

{{ album.album|display_album_title }}{% if album_year_text %}{{ album_year_text }}{% endif %}

{% if album_artist_parts or album_genre_parts %}
    {% if album_artist_parts %}
  • {% for part in album_artist_parts %}{{ part }}{% if not loop.last %}, {% endif %}{% endfor %}
  • {% endif %} {% if album_genre_parts %}
  • {% for part in album_genre_parts %}{{ part }}{% if not loop.last %}, {% endif %}{% endfor %}
  • {% endif %}
{% endif %} {% if album_style_parts %}
  • {% for part in album_style_parts %}{{ part }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% set has_multiple_metadata_groups = album_musicbrainz_sections|length > 1 %}

Delete Album

Deletes the audio files and eligible cover art from storage. Rescan the library to remove the album from Kukicha.

{% if album_cover_upload_enabled %}

Upload Cover

Uploads the image as cover.[ext] to every folder represented by this album. Existing cover files with the same extension will be overwritten. Rescan the library to reconcile the new cover art.

{% endif %}

Tag / Metadata Edits

{{ info_icon("album-edit-notice-icon") }}

Metadata URL edits save provider links in Kukicha for future rescans and resyncs. Audio files are treated as read-only unless dangerous audio tag edits are explicitly enabled.

Metadata URL

Saves a MusicBrainz release or release-group URL, or a Discogs release or master URL, for this album. Kukicha stores the link for future rescans and resyncs without editing the matching audio files. Clearing the URL removes the saved metadata override without rewriting tags.

{% for section in album_musicbrainz_sections %} {% set metadata_value = section.musicbrainz_url %} {% if not metadata_value and album_musicbrainz_sections|length == 1 and album_metadata_url %} {% set metadata_value = album_metadata_url %} {% endif %}
{% if section.label or section.meta %}
{% if section.label %}

{{ section.label }}

{% endif %} {% if section.meta %}
    {% for item in section.meta %}
  • {{ item }}
  • {% endfor %}
{% endif %}
{% endif %} {% for item in section.tracks %} {% endfor %}
{% endfor %}
{% if album_tag_edit_section is defined and not has_multiple_metadata_groups %}

Dangerous: Update Audio Tags

Writes the album, album artist, genre, track artist, track number, and title fields directly to these audio files.

{% set section = album_tag_edit_section %}
Audio tag fields
{% for item in section.tracks %} {% set track = item.track %}
{% if track.track_number %}{{ track.track_number }}. {% endif %}{{ track.display_title }} {{ track.path }}
{% endfor %}
{% endif %}