diff options
author | Özgür Kesim <oec@codeblau.de> | 2023-12-28 17:03:33 +0100 |
---|---|---|
committer | Özgür Kesim <oec@codeblau.de> | 2023-12-28 17:03:33 +0100 |
commit | 2f6c7f2a7d2cef0cb8956217864b4e664a784bef (patch) | |
tree | 428f24e817ad327e5afb35f314edd7b66d60f01d /list.tmpl | |
parent | ba0d00988101156e7daeb33923220dd0e82ac761 (diff) |
add information about assignment status
Diffstat (limited to 'list.tmpl')
-rw-r--r-- | list.tmpl | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -42,14 +42,18 @@ pre { <h4>Features</h4> {{- range $features.ByCategory $cat }} <details> - <summary><a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}</summary> + <summary> + {{ 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}}</summary> <pre>{{ .Description }}</pre> </details> {{ end -}} <h4>Issues</h4> {{- range $issues.ByCategory $cat }} <details> - <summary><a href="https://bugs.gnunet.org/view.php?id={{.Id}}" target="_blank">{{.Id}}</a> {{.Summary}}</summary> + <summary> + {{ 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}}</summary> <pre>{{ .Description }}</pre> </details> {{ end -}} |