{#if download.mediaType === "video"} {:else} {/if}

{download.itemName || download.itemId}

{#if download.mediaType === "video" && download.seriesName}

{download.seriesName} {#if download.seasonNumber !== undefined && download.episodeNumber !== undefined} • S{String(download.seasonNumber).padStart(2, "0")}E{String( download.episodeNumber, ).padStart(2, "0")} {/if} {#if download.qualityPreset && download.qualityPreset !== "original"} {download.qualityPreset} {/if}

{:else if download.mediaType === "video"}

Movie {#if download.qualityPreset && download.qualityPreset !== "original"} {download.qualityPreset} {/if}

{:else if download.artistName || download.albumName}

{download.artistName}{download.artistName && download.albumName ? " • " : ""}{download.albumName}

{/if}
{getStatusText()} {#if download.downloadSource === "auto"} Auto {/if}
{#if download.status === "downloading" || download.status === "paused"}
{Math.round(download.progress * 100)}% {formatProgress()}
{:else if download.status === "completed"}

{formatBytes(download.bytesDownloaded)}

{:else if download.status === "failed"}

{download.errorMessage || "Download failed"}

{:else if download.status === "pending"}

{#if download.fileSize} {formatBytes(download.fileSize)} {:else} Waiting to start... {/if}

{/if}
{#if download.status === "downloading"} {:else if download.status === "paused"} {:else if download.status === "pending"} {:else if download.status === "completed"} {:else if download.status === "failed"} {/if}