{% 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). Books are grouped by normalised title. Keep the one you want and delete the rest. {% 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 %}