aboutsummaryrefslogtreecommitdiff
path: root/list.tmpl
diff options
context:
space:
mode:
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
commit2f6c7f2a7d2cef0cb8956217864b4e664a784bef (patch)
tree428f24e817ad327e5afb35f314edd7b66d60f01d /list.tmpl
parentba0d00988101156e7daeb33923220dd0e82ac761 (diff)
add information about assignment status
Diffstat (limited to 'list.tmpl')
-rw-r--r--list.tmpl8
1 files changed, 6 insertions, 2 deletions
diff --git a/list.tmpl b/list.tmpl
index f73c441..79c25b9 100644
--- a/list.tmpl
+++ b/list.tmpl
@@ -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 -}}