{{template "header" .}}
{{$cal := get_zanpian_calendar host_user.ID}}

{{if .title}}{{.title}}{{else}}追剧日历{{end}}

{{$cal.StartDate}} — {{$cal.EndDate}} {{if eq $cal.Source "cms"}}· 本地同步{{end}}

{{if gt (len $cal.Days) 0}}
{{range $day := $cal.Days}}

{{if $day.IsToday}}今天{{end}} {{if $day.IsTomorrow}}明天{{end}} {{$day.Main}} {{$day.Sub}}

{{$day.Count}} 部剧集
{{range $entry := $day.Entries}}
{{template "film_card" (dict "href" (calendar_entry_link host_user.ID $entry) "title" (or $entry.ShowNameCN $entry.ShowName) "poster" $entry.Poster "rate" $entry.Rate "subtitle" $entry.EpisodeInfo)}}
{{end}}
{{end}}
{{else}}

本周暂无剧集播出

试试切换其他地区或时间范围

{{if $cal.Error}}

{{$cal.Error}}

{{end}}
{{end}}
{{template "footer" .}}