summaryrefslogtreecommitdiff
path: root/pgcommitfest/commitfest
diff options
context:
space:
mode:
authorJelte Fennema-Nio2024-12-23 22:43:02 +0000
committerMagnus Hagander2025-01-10 15:59:51 +0000
commiteee60a5332ac0745071086477ff4e189b080d3ab (patch)
treece0e8a6ce08f245cb7b1def19b083a2a2e1345eb /pgcommitfest/commitfest
parent765366ee7bed57865afdcf23ee7323cc8b1cdcc6 (diff)
Include patch id in commitfest page
Clicking the patch header would sort by the patch ID, but that ID would not actually be visible. Effectively resulting in random ordering for the user, so let's just show the ID.
Diffstat (limited to 'pgcommitfest/commitfest')
-rw-r--r--pgcommitfest/commitfest/templates/commitfest.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/templates/commitfest.html b/pgcommitfest/commitfest/templates/commitfest.html
index 63f793a..6068a27 100644
--- a/pgcommitfest/commitfest/templates/commitfest.html
+++ b/pgcommitfest/commitfest/templates/commitfest.html
@@ -83,7 +83,7 @@
{%endifchanged%}
{%endif%}
<tr>
- <td><a href="{{p.id}}/">{{p.name}}</a></td>
+ <td><a href="{{p.id}}/">{{p.id}}: {{p.name}}</a></td>
<td><span class="label label-{{p.status|patchstatuslabel}}">{{p.status|patchstatusstring}}</span></td>
<td>{%if p.targetversion%}<span class="label label-default">{{p.targetversion}}</span>{%endif%}</td>
<td>{{p.author_names|default:''}}</td>