{{if .CanWriteProjects}}
{{.locale.Tr "new_project_column"}}
{{end}}
{{$.locale.Tr "repo.projects.column.new"}}
{{$.Project.Title}}
{{$.Project.RenderedContent|Str2html}}
{{range $board := .Boards}}
{{if and $.CanWriteProjects (ne .ID 0)}}
{{end}}
{{end}}
{{.NumIssues}}
{{.Title}}
{{svg "octicon-kebab-horizontal"}}
{{range (index $.IssuesMap .ID)}}
{{if eq $.Project.CardType 1}}{{/* Images and Text*/}}
{{if or .Labels .Assignees}}
{{end}}
{{end}}
{{if .IsPull}}
{{if .PullRequest.HasMerged}}
{{svg "octicon-git-merge" 16 "text purple"}}
{{else}}
{{if .IsClosed}}
{{svg "octicon-git-pull-request" 16 "text red"}}
{{else}}
{{svg "octicon-git-pull-request" 16 "text green"}}
{{end}}
{{end}}
{{else}}
{{if .IsClosed}}
{{svg "octicon-issue-closed" 16 "text red"}}
{{else}}
{{svg "octicon-issue-opened" 16 "text green"}}
{{end}}
{{end}}
{{.Title}}
{{- if .MilestoneID}}
{{- end}}
{{- range index $.LinkedPRs .ID}}
{{- end}}
{{range .Labels}}
{{RenderLabel $.Context .}}
{{end}}
{{end}}
{{range .Assignees}}
{{avatar $.Context . 28 "mini gt-mr-3"}}
{{end}}