Skip to content

Commit

Permalink
Add 'verified' column.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Cross committed Sep 15, 2015
1 parent 8b38bea commit 67cbbf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Kinza/views/years.tt
Expand Up @@ -12,10 +12,11 @@ END -%]
<tr><th colspan="4"><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>Name</th><th>Email</th><th>Registered</th><th>Selected</th></td>
<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>
<td>[% ok(student.password) %]</td>
<td>[% ok(student.password AND NOT student.verify) %]</td>
<td>[% ok(student.locked) %]</td></tr>
[% END -%]
[% END -%]
Expand Down

0 comments on commit 67cbbf2

Please sign in to comment.