aboutsummaryrefslogtreecommitdiff
path: root/table.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'table.tmpl')
-rw-r--r--table.tmpl14
1 files changed, 12 insertions, 2 deletions
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 {
</summary>
{{- range . }}
{{ if .IsHandled }}<span title="assigned to {{.Handler.Name}}">🥷</span>{{else}}<span title="unassigned">❓</span>{{end}}
- <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}<br>
+ <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a>
+ <span class="severity-{{.Severity.Name}}">{{.Summary}}</span><br>
{{- end}}
</details>
{{- end }}
@@ -123,7 +131,9 @@ details[open].issue {
</summary>
{{- range . }}
{{ if .IsHandled }}<span title="assigned to {{.Handler.Name}}">🥷</span>{{else}}<span title="unassigned">❓</span>{{end}}
- <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}<br>{{end}}
+ <a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a>
+ <span class="severity-{{.Severity.Name}}">{{.Summary}}</span><br>
+ {{- end}}
</details>
{{ end -}}
</div></td>{{ end }}