Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pgcommitfest/commitfest/templates/commitfest.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,16 @@
<b>Status summary: </b>{%for id,title,num in statussummary%}<a href="?status={{id}}">{{title}}</a>: {{num}}. {%endfor%}
</p>

{%for p in patches %}
{%for p in patches %}
{%ifchanged p.is_open%}
{% if not cf.draft or p.is_open %}
{%if not forloop.first%}
</tbody>
</table>
{%endif%}
<h3>{{p.is_open|yesno:"Active patches,Closed patches"}}</h3>
{% if not cf.draft or p.is_open %}
<h3>{{p.is_open|yesno:"Active patches,Closed patches"}}</h3>
{% endif %}
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
Expand Down