Skip to content

Commit 8e9b144

Browse files
Florents-TselaiJelteF
authored andcommitted
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 3c92516 commit 8e9b144

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
@@ -114,11 +114,15 @@
114114
</tr>
115115
<tr>
116116
<th>Links</th>
117-
{%if patch.wikilink%}
118-
<a href="{{patch.wikilink}}">Wiki</a>{%endif%}{%if patch.gitlink%}
119-
<a href="{{patch.gitlink}}">Git</a>
120-
{%endif%}</td>
121-
</tr>
117+
<td>
118+
{% if patch.wikilink %}
119+
<a href="{{ patch.wikilink }}">Wiki</a>
120+
{% endif %}
121+
{% if patch.gitlink %}
122+
<a href="{{ patch.gitlink }}">Git</a>
123+
{% endif %}
124+
</td>
125+
</tr>
122126
<tr>
123127
<th>Emails</th>
124128
<td>

0 commit comments

Comments
 (0)