Skip to content

Commit eee60a5

Browse files
JelteFmhagander
authored andcommitted
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.
1 parent 765366e commit eee60a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pgcommitfest/commitfest/templates/commitfest.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ <h3>{{p.is_open|yesno:"Active patches,Closed patches"}}</h3>
8383
{%endifchanged%}
8484
{%endif%}
8585
<tr>
86-
<td><a href="{{p.id}}/">{{p.name}}</a></td>
86+
<td><a href="{{p.id}}/">{{p.id}}: {{p.name}}</a></td>
8787
<td><span class="label label-{{p.status|patchstatuslabel}}">{{p.status|patchstatusstring}}</span></td>
8888
<td>{%if p.targetversion%}<span class="label label-default">{{p.targetversion}}</span>{%endif%}</td>
8989
<td>{{p.author_names|default:''}}</td>

0 commit comments

Comments
 (0)