{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

Track Matching

{% if unified_playlist %}

We'll create 1 unified playlist from {{ uploaded_files|length }} files

{% else %}

We'll create {{ uploaded_files|length }} playlists (one per file)

{% endif %}

Found {{ found_count }} out of {{ total_tracks }} tracks in your Plex library

{% set total_missing = (total_tracks - found_count) %} {% if total_missing > 0 %}
{{ total_missing }} tracks not found in your Plex library. You can search for them manually below.
{% else %}
All tracks were found in your Plex library! Click "Create Playlist" to continue.
{% endif %} {% set progress_percent = (found_count / total_tracks * 100)|round|int %}
{{ progress_percent }}%
{% for group in missing_by_file %} {% set file_id = (group.filename | replace('.', '_') | replace(' ', '_')) %}
Missing Tracks — {{ group.playlist_name }}
{{ group.missing_count }}
{% if group.missing_tracks %}
{% for track in group.missing_tracks %} {% endfor %}
# Track Artist Album Action
{{ loop.index }} {{ track.get('Track Name', '') }} {{ track.get('Artist Name(s)', '') }} {{ track.get('Album Name', '') }}
{% else %}

All tracks were found in this file.

{% endif %}
{% endfor %}
Uploaded Files
{% for file in uploaded_files %}
{{ file.filename }}

{{ file.track_count }} track{% if file.track_count != 1 %}s{% endif %}

{% endfor %}
Playlist Creation Options
{% if file_mode %}
File {{ file_index + 1 }} of {{ total_files }}
You'll be taken to the next file after creating this playlist.
You can rename this playlist before creating it.
{% elif unified_playlist %}
{% else %}

Each file will be created as a separate playlist with its filename as the playlist name.

{% endif %}
Back
{% endblock %} {% block scripts %} {% endblock %}