{{define "comment_list"}} {{template "header" .}}

{{index .Tr "admin_comments_title"}}

{{index .Tr "comment_status_pending"}} {{if gt .PendingCount 0}}{{.PendingCount}}{{end}} {{index .Tr "comment_status_approved"}} {{index .Tr "comment_status_rejected"}} {{index .Tr "comment_status_all"}}
{{if .Success}}
{{.Success}}
{{end}}
{{range .Comments}}
{{.AuthorName}} {{if .Website}}{{.Website}}{{end}} {{.MaskedEmail}} · {{.CreatedAt.Format "2006-01-02 15:04"}} {{if .IPAddress}}IP: {{.IPAddress}}{{end}} {{if .IsPrivate}}{{index $.Tr "comments_private_badge"}}{{end}} {{.StatusLabel}}
{{if .ArticleTitle}} ↗ {{.ArticleTitle}} {{end}}
{{if eq .Status 0}}
{{end}} {{if ne .Status 2}}
{{end}}
{{else}}
{{index .Tr "comment_empty"}}
{{end}}
{{template "footer" .}} {{end}}