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

Last change on this file since 111 was 111, checked in by nanardon, 15 years ago
  • don't show ballot submission time anymore, only 'has voted' (#22)
  • Property svn:keywords set to Id
File size: 563 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>Electeur</th><th>Emargement</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>[% "A voté" IF 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.