Skip to content

Commit 1b352c1

Browse files
Fix links not appearing in patch page (#71)
I noticed links are not visible in the patch page Not it works as expected <img width="435" alt="image" src="https://github.com/user-attachments/assets/2d794272-9734-4c99-acd5-d381d8da278c" />
1 parent d17a0a8 commit 1b352c1

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

pgcommitfest/commitfest/templates/patch.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,15 @@
106106
</tr>
107107
<tr>
108108
<th>Links</th>
109-
{%if patch.wikilink%}
110-
<a href="{{patch.wikilink}}">Wiki</a>{%endif%}{%if patch.gitlink%}
111-
<a href="{{patch.gitlink}}">Git</a>
112-
{%endif%}</td>
113-
</tr>
109+
<td>
110+
{% if patch.wikilink %}
111+
<a href="{{ patch.wikilink }}">Wiki</a>
112+
{% endif %}
113+
{% if patch.gitlink %}
114+
<a href="{{ patch.gitlink }}">Git</a>
115+
{% endif %}
116+
</td>
117+
</tr>
114118
<tr>
115119
<th>Emails</th>
116120
<td>

0 commit comments

Comments
 (0)