GNU Taler Dashboard
{{ with .Lasterror }}, Last error: {{ . }} {{end}}
{{- $top := . }}
{{- $features := .Features }}
{{- $issues := .Issues }}
{{- $versions := .VersionsByDate }}
{{- $sorter := OrderedBy "Severity" "Handler" "Id" -}}
{{- range $cat := $top.Categories }}
{{ $cat }}
{{- range $tar := $top.TargetVersions }}
{{- with $version := $versions.Get . }}
{{ $hasentries := false }}
{{ $hasfeatures := false }}
{{ $hasissues := false }}
{{ with $features.ByCategoryAndTarget $cat $tar }}
{{ $hasfeatures = true }}
{{ $hasentries = true }}
{{ end }}
{{ with $issues.ByCategoryAndTarget $cat $tar }}
{{ $hasissues = true }}
{{ $hasentries = true }}
{{ end }}
{{ if $hasentries }}{{ $tar }} ({{$version.Timestamp.Format "02 Jan 06"}})
{{ end }}
{{ if $hasfeatures }}
Features
{{- range $sorter.Sort ($features.ByCategoryAndTarget $cat $tar) }}
{{ if .IsHandled }}🥷{{else}}❓{{end}}
{{.Id}}
{{.Summary}}
{{ .Description }}
{{ end -}}
{{ end }}
{{ if $hasissues }}
Issues
{{- range $sorter.Sort ($issues.ByCategoryAndTarget $cat $tar) }}
{{ if .IsHandled }}🥷{{else}}❓{{end}}
{{.Id}}
{{.Summary}}
{{ .Description }}
{{ end -}}
{{ end -}}
{{end}}
{{end}}
{{ end -}}
Total: {{ len $features }} features and {{ len $issues }} issues.
Data from {{ .Timestamp.Format "02 Jan 06 15:04 MST"}},
updated every {{ .Freq }} (no auto-refresh).
taler-dashboard - version: {{.Commit}} - https://git.kesim.org/taler/taler-dashboard