package watchlist import ( "fmt" "mal/internal/db" ) templ Progress(entry db.GetUserWatchListRow) { if entry.CurrentEpisode.Valid && entry.CurrentEpisode.Int64 > 0 && entry.Status != "completed" {

Continue ep { fmt.Sprintf("%d", entry.CurrentEpisode.Int64) } if entry.CurrentTimeSeconds > 0 { { fmt.Sprintf(" ยท %s", formatProgressTime(entry.CurrentTimeSeconds)) } }

} }