summaryrefslogtreecommitdiff
path: root/templates/wp-total.md
blob: c664634b3c3499fc9611856daf1a86fc0febd341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Total for {{ .WP }}:
-------------------
Budgeted : {{ printf "%8s" .Budgeted.AsDay }}
 Planned : {{ printf "%8s" .Planned.AsDay }}{{with .Unaccounted }}
 ! Open !: {{ printf "%8s" .AsDay}}{{end}}
    Done : {{ printf "%8s" .Done.AsDay }}{{with .Open }}
 ! Todo !: {{ printf "%8s" .AsDay }}{{end}}

Per Task:
{{- range $n, $t := .Tasks }}

»{{ $n }}«:
Budgeted : {{ printf "%8s" $t.Budgeted.AsDay }}
 Planned : {{ printf "%8s" $t.Planned.AsDay }}{{with $t.Unaccounted }}
 ! Open !: {{ printf "%8s" .AsDay}}{{end}}
    Done : {{ printf "%8s" $t.Done.AsDay }}{{with $t.Open }}
 ! Todo !: {{ printf "%8s" .AsDay}}{{end}}
{{- end }}