diff --git a/list.tmpl b/list.tmpl index 79c25b9..0433d0c 100644 --- a/list.tmpl +++ b/list.tmpl @@ -21,6 +21,13 @@ pre { overflow: scroll; text-overflow: wrap,ellipsis; } +.severity-block { color: red; font-style: bold; } +.severity-crash { color: red; } +.severity-major { color: brown; } +.severity-minor { color: darkorange; } +.severity-text { color: black; } +.severity-trivial { color: blue; } +.severity-tweak { color: grey; }

GNU Taler Dashboard

@@ -43,18 +50,22 @@ pre { {{- range $features.ByCategory $cat }}
- {{ if .IsHandled }}🥷{{else}}{{end}} - {{.Id}} {{.Summary}} -
{{ .Description }}
+ {{ if .IsHandled }}🥷{{else}}{{end}} + {{.Id}} + {{.Summary}}
+ +
{{ .Description }}
{{ end -}}

Issues

{{- range $issues.ByCategory $cat }}
- {{ if .IsHandled }}🥷{{else}}{{end}} - {{.Id}} {{.Summary}} -
{{ .Description }}
+ {{ if .IsHandled }}🥷{{else}}{{end}} + {{.Id}} + {{.Summary}}
+ +
{{ .Description }}
{{ end -}} {{ end -}} diff --git a/table.tmpl b/table.tmpl index 95afd01..6a4f402 100644 --- a/table.tmpl +++ b/table.tmpl @@ -34,6 +34,13 @@ tr:hover { .minh { min-height: 5em; } +.severity-block { color: red; font-style: bold; } +.severity-crash { color: red; } +.severity-major { color: brown; } +.severity-minor { color: darkorange; } +.severity-text { color: black; } +.severity-trivial { color: blue; } +.severity-tweak { color: grey; } summary { display: flex; justify-content: space-between; @@ -112,7 +119,8 @@ details[open].issue { {{- range . }} {{ if .IsHandled }}🥷{{else}}{{end}} - {{.Id}} {{.Summary}}
+ {{.Id}} + {{.Summary}}
{{- end}} {{- end }} @@ -123,7 +131,9 @@ details[open].issue { {{- range . }} {{ if .IsHandled }}🥷{{else}}{{end}} - {{.Id}} {{.Summary}}
{{end}} + {{.Id}} + {{.Summary}}
+ {{- end}} {{ end -}} {{ end }}