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

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

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