{% extends "base.html" %} {% block title %}Duplicates — CalibreSync{% endblock %} {% block content %} {% if error %}
Could not fetch books from Calibre-Web: {{ error }}
{% else %}

Scanned {{ total_books }} book(s) — {% if groups %} found {{ groups|length }} duplicate group(s) (same title + author). The oldest copy (lowest ID) is kept when deleting all. {% else %} no duplicates found. {% endif %}

{% for group in groups %}

{{ group[0].title }}

{% for book in group %} {% endfor %}
ID Title Authors Format
{{ book.id }} {{ book.title }} {{ book.authors }} {{ book.format or "—" }}
{% endfor %} {% endif %} {% endblock %}