From eee60a5332ac0745071086477ff4e189b080d3ab Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Mon, 23 Dec 2024 23:43:02 +0100 Subject: [PATCH] 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. --- pgcommitfest/commitfest/templates/commitfest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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%} - {{p.name}} + {{p.id}}: {{p.name}} {{p.status|patchstatusstring}} {%if p.targetversion%}{{p.targetversion}}{%endif%} {{p.author_names|default:''}} -- 2.39.5