Skip to content

Commit

Permalink
Fix colspan to take new column into account
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Cross committed Sep 15, 2015
1 parent 1f656c7 commit 1b63a91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kinza/views/years.tt
Expand Up @@ -9,9 +9,9 @@ END -%]

<table class="table table-bordered table-hover">
[% FOREACH year IN years.all.sort('seq') -%]
<tr><th colspan="4"><h2>[% year.name %]</h2></th></tr>
<tr><th colspan="5"><h2>[% year.name %]</h2></th></tr>
[% FOREACH form IN year.forms.sort('name') -%]
<tr><th colspan="4"><h3>[% form.name %]</h3></th></tr>
<tr><th colspan="5"><h3>[% form.name %]</h3></th></tr>
<tr><th>Name</th><th>Email</th><th>Registered</th><th>Verified</th><th>Selected</th></td>
[% FOREACH student IN form.students.sort('name') -%]
<tr><td>[% student.name %]</td><td>[% student.email %]</td>
Expand Down

0 comments on commit 1b63a91

Please sign in to comment.