aboutsummaryrefslogtreecommitdiff
path: root/table.tmpl
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@codeblau.de>2024-01-14 19:58:19 +0100
committerÖzgür Kesim <oec@codeblau.de>2024-01-14 19:58:37 +0100
commit0a751aa7223bb7d1e800ad81827afb653de89fdd (patch)
tree407a1f2035527a3984cc79fc8d675cec9cd8d90b /table.tmpl
parent694de94c0b87578cddae45710fab981993a4acf6 (diff)
show children of specification features
Diffstat (limited to 'table.tmpl')
-rw-r--r--table.tmpl7
1 files changed, 6 insertions, 1 deletions
diff --git a/table.tmpl b/table.tmpl
index 9b29099..cffda85 100644
--- a/table.tmpl
+++ b/table.tmpl
@@ -124,7 +124,12 @@ details[open].issue {
{{- range $sorter.Sort . }}
{{ 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>
- <span class="severity-{{.Severity.Name}}">{{.Summary}}</span><br>
+ <span class="severity-{{.Severity.Name}}">{{.Summary}}</span>
+ {{ with .Children }}(children:
+ {{ range $child := . }}
+ <span class="child"><a href="https://bugs.gnunet.org/view.php?id={{$child.Id}}" target="_blank" title="{{$child.Summary}}">{{$child.Id}}</a> </span>
+ {{ end }})
+ {{ end }}<br>
{{- end}}
</details>
{{- end }}