{{define "board.html"}} {{template "shell-start" .}}

SHARED WORKSPACE

Team board

Plan, assign, and move work forward together.

+ Add task

NEW CARD

Add work to the board

{{template "notice" .}}
{{range .Board}}
{{.Title}}{{.Hint}}
{{len .Tasks}}
{{range .Tasks}}
#{{.ID}}{{if .DueDate}}Due {{dateFA .DueDate}}{{end}}

{{.Title}}

{{if .Description}}

{{.Description}}

{{end}}
{{if .AssigneeID.Valid}}{{initial .AssigneeName}}{{.AssigneeName}}{{else}}?Unassigned{{end}} by {{.CreatorName}}
{{if or (eq .CreatorID $.User.ID) (eq $.User.Role "admin")}}
Remove
{{end}}
{{end}} {{if not .Tasks}}
Drop tasks here
{{end}}
{{end}}
{{template "shell-end" .}} {{end}}