diff options
author | Jelte Fennema-Nio | 2024-12-23 22:43:02 +0000 |
---|---|---|
committer | Magnus Hagander | 2025-01-10 15:59:51 +0000 |
commit | eee60a5332ac0745071086477ff4e189b080d3ab (patch) | |
tree | ce0e8a6ce08f245cb7b1def19b083a2a2e1345eb | |
parent | 765366ee7bed57865afdcf23ee7323cc8b1cdcc6 (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.
-rw-r--r-- | pgcommitfest/commitfest/templates/commitfest.html | 2 |
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> |