{{ t('title') }}

{{ t('description') }}

@if (stats) {
{{ stats.completedSeries }} {{ stats.inProgressSeries }} {{ stats.notStartedSeries }}
}
@if (stats) {
{{ stats.totalSeries }} {{ t('series') }}
{{ stats.avgSeriesCompletion }}% {{ t('avgCompletion') }}
@if (stats.highestRatedSeries) {
{{ stats.highestRatedSeries.avgPersonalRating?.toFixed(1) }} {{ t('topRated') }}
}
}
@if (seriesList.length > 0) {

{{ t('seriesBreakdown') }}

{{ t('ofTotal', { filtered: filteredSeriesList.length, total: seriesList.length }) }}
@for (series of displayedSeries; track series.name) {
{{ series.name }}
{{ t('booksRead', { read: series.booksRead, owned: series.booksOwned }) }} @if (series.totalInSeries) { {{ t('inSeriesHint', { total: series.totalInSeries }) }} } @if (series.avgPersonalRating) { {{ series.avgPersonalRating.toFixed(1) }} }
@if (series.booksReading > 0) {
}
{{ series.completionPercentage }}%
@if (series.nextUnread && series.status !== 'completed') {
{{ t('next') }} {{ series.nextUnread }}
}
} @if (filteredSeriesList.length === 0 && searchTerm) {
{{ t('noMatchingSearch', { term: searchTerm }) }}
}
@if (getTotalPages() > 1) { }
} @if (!stats) {

{{ t('noData') }}

{{ t('noDataHint') }}
}