diff options
author | Daniel Gustafsson | 2017-09-04 10:38:24 +0000 |
---|---|---|
committer | Magnus Hagander | 2017-09-04 10:38:24 +0000 |
commit | 778182f966e164ea12df200cd03432fb98bf70e8 (patch) | |
tree | 4e4fdbc565d752e5db206c58b506e2594e9aebd3 | |
parent | 9e57d339264335e237945231b66d752550caeef3 (diff) |
Fix closing of <table> tag
-rw-r--r-- | pgcommitfest/commitfest/templates/commitfest.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pgcommitfest/commitfest/templates/commitfest.html b/pgcommitfest/commitfest/templates/commitfest.html index c648f8c..46f70e4 100644 --- a/pgcommitfest/commitfest/templates/commitfest.html +++ b/pgcommitfest/commitfest/templates/commitfest.html @@ -92,11 +92,11 @@ <td style="white-space: nowrap;"><input type="checkbox" class="sender_checkbox" id="send_authors_{{p.id}}">Author<br/><input type="checkbox" class="sender_checkbox" id="send_reviewers_{{p.id}}">Reviewer</td> {%endif%} </tr> -{%endfor%} -{%if p%} +{%if forloop.last%} </tbody> </table> {%endif%} +{%endfor%} <div> {%if cf.isopen or user.is_staff %} |