diff options
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 |
commit | 0a751aa7223bb7d1e800ad81827afb653de89fdd (patch) | |
tree | 407a1f2035527a3984cc79fc8d675cec9cd8d90b /table.tmpl | |
parent | 694de94c0b87578cddae45710fab981993a4acf6 (diff) |
show children of specification features
Diffstat (limited to 'table.tmpl')
-rw-r--r-- | table.tmpl | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 }} |