Skip to content

Commit 1d605a0

Browse files
committed
Allow clicking on a tag in commitfest overview page
1 parent b86c4d1 commit 1d605a0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pgcommitfest/commitfest/templates/commitfest.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ <h3>{{p.is_open|yesno:"Active patches,Closed patches"}}</h3>
6262
<td><span class="label label-{{p.status|patchstatuslabel}}">{{p.status|patchstatusstring}}</span></td>
6363
<td style="width: min-content;">
6464
{%for t in p.tag_ids%}
65-
<span class="label" style="background: {{all_tags|tagcolor:t}};">{{all_tags|tagname:t}}</span>
65+
66+
<a href="?tag={{t}}">
67+
<span class="label" style="background: {{all_tags|tagcolor:t}};">{{all_tags|tagname:t}}</span>
68+
</a>
6669
{%endfor%}
6770
</td>
6871
<td>{%if p.targetversion%}<span class="label label-default">{{p.targetversion}}</span>{%endif%}</td>

0 commit comments

Comments
 (0)