You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When not logged in it would show the same header above both the open and
closed tables. This fixes that while also tweaking the header when you
are logged in to be more descriptive of the content.
Copy file name to clipboardExpand all lines: pgcommitfest/commitfest/templates/home.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@
48
48
</tbody>
49
49
</table>
50
50
{%endif%}
51
-
<h3>{{user.is_authenticated|yesno:"Your personal dashboard,Patches in the current commitfest"}}</h3>
51
+
<h3>{%if user.is_authenticated%}Open patches you are subscribed to{%elif p.is_open%}Active patches in the current commitfest{%else%}Closed patches in the current commitfest{%endif%}</h3>
0 commit comments