From efd4f1ea3cf9f3d7335ed718c5d7fd44354147f9 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Thu, 7 May 2026 00:04:38 -0700 Subject: Remove rewatch rate metric The rewatch rate (percentage of films rewatched) is less useful than the detailed rewatch patterns panel. Removed the metric section from both the template and backend payload. Co-Authored-By: Claude Haiku 4.5 --- templates/stats.html | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'templates') diff --git a/templates/stats.html b/templates/stats.html index 34d796e..797054a 100644 --- a/templates/stats.html +++ b/templates/stats.html @@ -59,16 +59,6 @@
-
-
-
-

Rewatch

-

Rate

-
-
-
-
-
@@ -168,13 +158,6 @@
`).join(""); - const rewatchRate = document.getElementById("rewatch-rate"); - const rate = data.rewatch_rate.total_watched ? Math.round(data.rewatch_rate.rate * 100) : 0; - rewatchRate.innerHTML = ` - ${rate}% - ${data.rewatch_rate.rewatched} of ${data.rewatch_rate.total_watched} watched films were rewatches. - `; - const rewatchPatterns = document.getElementById("rewatch-patterns-list"); if (data.rewatch_patterns && data.rewatch_patterns.length > 0) { rewatchPatterns.innerHTML = data.rewatch_patterns.map((item) => { -- cgit v1.3-2-g0d8e