From 04b241392c0f28e7ca8c878d46b9c6a4e7a4a363 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Thu, 28 May 2026 12:47:38 +0200 Subject: [PATCH] refactor: remove unused watchlist partial template --- templates/watchlist_partial.gohtml | 84 ------------------------------ 1 file changed, 84 deletions(-) delete mode 100644 templates/watchlist_partial.gohtml diff --git a/templates/watchlist_partial.gohtml b/templates/watchlist_partial.gohtml deleted file mode 100644 index c56a4d5..0000000 --- a/templates/watchlist_partial.gohtml +++ /dev/null @@ -1,84 +0,0 @@ -{{define "title"}}Watchlist{{end}} -{{define "content"}} -
-

Watchlist

- -
-
- - - - - -
- -
- -
- -
- -
- - -
-
- -
- {{range $status := $.StatusOrder}} - {{$entries := index $.WatchlistByStatus $status}} - {{if $entries}} -
-
- {{range $entries}} -
-
- - {{.DisplayTitle}} - -
-
- -
-
-
-

- {{.DisplayTitle}} -

-
- {{end}} -
-
- {{end}} - {{end}} - - {{if eq (len $.AllEntries) 0}} -
- -

Your watchlist is empty.

- Browse anime -
- {{end}} -
-
- - {{end}}