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

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