source: trunk/root/templates/includes/signing_list.tt @ 453

Last change on this file since 453 was 404, checked in by misc, 14 years ago
  • add some missing capitals
  • Property svn:keywords set to Id Rev
File size: 738 bytes
Line 
1<!-- $Id$ -->
2[% USE Mail %]
3
4[% poll = c.model('Vote').poll(voteid) %]
5[% poll_status = poll.status %]
6
7[% FOREACH id = poll.voting_keys() %]
8[% voting = poll.voting(id).info %]
9[% IF loop.first %]
10<div id="voting_list" class="box">
11<p>[% l('List of voters') %]</p>
12<table border="1">
13<tr><th>[% l('Number') %]</th><th>[% l('Voter') %]</th>
14[% IF poll_status != 'RUNNING' %]<th>[% l('Sign') %]</th>[% END %]
15</tr>
16[% END %]
17<tr>
18<td>[% loop.count %]</td>
19<td>
20    [% voting.label | html %]
21    [% " &lt;" IF voting.label %][% voting.mail | mail | html %][% "&gt;" IF voting.label %]
22</td>
23[% IF poll_status != 'RUNNING' %]<td>[% l('has voted') IF voting.date %]</td>[% END %]
24</tr>
25[% IF loop.last %]
26</table>
27</div>
28[% END %]
29[% END %]
Note: See TracBrowser for help on using the repository browser.