{{define "title"}}Reviews{{end}} {{define "content"}} {{template "reviews_content" .}} {{end}} {{define "reviews_content"}}
Back to anime

Reviews

{{if eq (len .Reviews) 0}}

No reviews yet

{{else}}
{{template "review_cards" .}}
{{end}}
{{end}} {{define "review_cards"}} {{range .Reviews}}
{{.User.Username}}
{{.User.Username}} {{formatDate .Date}}
{{if .IsPreliminary}} Preliminary {{end}} {{if .IsSpoiler}} Spoiler {{end}}
{{.Score}}
{{if .Tags}}
{{range .Tags}} {{.}} {{end}}
{{end}}
{{.Review}}
{{if .EpisodesSeen}}{{.EpisodesSeen}} episodes seen{{end}}
{{if .Reactions.Nice}} {{.Reactions.Nice}} {{end}} {{if .Reactions.LoveIt}} {{.Reactions.LoveIt}} {{end}} {{if .Reactions.Funny}} {{.Reactions.Funny}} {{end}} {{if .Reactions.Confusing}} {{.Reactions.Confusing}} {{end}} {{if .Reactions.Informative}} {{.Reactions.Informative}} {{end}} {{if .Reactions.WellWritten}} {{.Reactions.WellWritten}} {{end}} {{if .Reactions.Creative}} {{.Reactions.Creative}} {{end}}
{{end}} {{if .HasNextPage}}
{{end}} {{end}}