Changeset 51


Ignore:
Timestamp:
03/17/09 02:33:12 (15 years ago)
Author:
delcambre
Message:
  • Align list of poll
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/root/templates/default.tt

    r47 r51  
    77<div id="open_poll"> 
    88<p>Vote en cours</p> 
    9 <ul> 
     9<table> 
     10<tbody> 
    1011[% END %] 
    11 <li><a href="[% c.uri_for( '/vote', id ) %]">[% vote.vote_info(id).label | html %]</a> 
    12 <a href="[% c.uri_for( '/ballot', id ) %]">&gt; Voter</a></li> 
     12<tr> 
     13<td><a href="[% c.uri_for( '/vote', id ) %]">[% vote.vote_info(id).label | html %]</a></td> 
     14<td><a href="[% c.uri_for( '/ballot', id ) %]">&gt; Voter</a></td> 
     15</tr> 
    1316[% IF loop.last %] 
    14 </ul> 
     17</tbody> 
     18</table> 
    1519</div> 
    1620[% END %] 
     
    2125<div id="comming_poll"> 
    2226<p>Vote à venir</p> 
    23 <ul> 
     27<table> 
     28<tbody> 
    2429[% END %] 
    25 <li><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a> 
    26 <a href="[% c.uri_for( '/admin', id ) %]">&gt; Administrer</a></li> 
     30<tr> 
     31<td><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a></td> 
     32<td><a href="[% c.uri_for( '/admin', id ) %]">&gt; Administrer</a></td> 
     33</tr> 
    2734[% IF loop.last %] 
    28 </ul> 
     35</tbody> 
     36</table> 
    2937</div> 
    3038[% END %] 
     
    3644<div id="closed_poll"> 
    3745<p>Vote Fermé</p> 
    38 <ul> 
     46<table> 
     47<tbody> 
    3948[% END %] 
    40 <li><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a></li> 
     49<tr> 
     50<td><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a></td> 
     51</tr> 
    4152[% IF loop.last %] 
    42 </ul> 
     53</tbody> 
     54</table> 
    4355</div> 
    4456[% END %] 
Note: See TracChangeset for help on using the changeset viewer.