Skip to content

Commit

Permalink
Add counter to dummies loop.
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Sep 4, 2014
1 parent f4b332a commit ff2b1db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Kinza/views/dummies.tt
Expand Up @@ -2,12 +2,13 @@
<p>The following users are currently unverified:</p>
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<th>#</th>
<th>Name</th>
<th>Email</th>
</thead>
[% FOREACH s IN students -%]
<tr>
<td>[% s.name %]</td><td>[% s.email %]</td>
<td>[% loop.count ]</td><td>[% s.name %]</td><td>[% s.email %]</td>
</tr>
[% END -%]
</table>

0 comments on commit ff2b1db

Please sign in to comment.