diff options
-rw-r--r-- | templates/report.t | 2 | ||||
-rw-r--r-- | templates/wp-total.t | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/report.t b/templates/report.t index f2cc359..460a83d 100644 --- a/templates/report.t +++ b/templates/report.t @@ -12,7 +12,7 @@ Budgeted : {{ $totals.Budgeted }} Planned : {{ $totals.Planned }}{{with $totals.Unaccounted}} ! Open !: {{ . }}{{end}} Done : {{ $totals.Done }}{{ with $totals.Open }} - ! TODO !: {{ . }}{{end}} + ! Todo !: {{ . }}{{end}} {{ range .ParallelWPTotals }}{{.}} {{ end }} diff --git a/templates/wp-total.t b/templates/wp-total.t index a4cf2f8..157b0ac 100644 --- a/templates/wp-total.t +++ b/templates/wp-total.t @@ -1,10 +1,10 @@ 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}} + ! Todo !: {{ printf "%8s" .AsDay }}{{end}} Per Task: {{ range $n, $t := .Tasks }} @@ -13,5 +13,5 @@ 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}} + ! Todo !: {{ printf "%8s" .AsDay}}{{end}} {{ end }}
\ No newline at end of file |