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

Last change on this file since 108 was 108, checked in by nanardon, 15 years ago
  • obfuscate mail in voting list (#17)
  • Property svn:keywords set to Id
File size: 550 bytes
Line 
1[% USE Mail %]
2
3[% vote = c.model('Vote') %]
4
5[% FOREACH id = vote.vote_voting(voteid) %]
6[% voting = vote.voting_info(id) %]
7[% IF loop.first %]
8<div id="voting_list" class="box">
9<p>Liste des votants:</p>
10<table border="1">
11<tr><th>Numéro</th><th>Votant</th><th>Date du vote</th></tr>
12[% END %]
13<tr>
14<td>[% loop.count %]</td>
15<td>
16    [% voting.label | html %]
17    [% "&lt;" IF voting.label %][% voting.mail | mail | html %][% "&gt;" IF voting.label %]
18</td>
19<td>[% voting.date %]</td>
20</tr>
21[% IF loop.last %]
22</table>
23</div>
24[% END %]
25[% END %]
Note: See TracBrowser for help on using the repository browser.