Changeset 68


Ignore:
Timestamp:
03/18/09 00:37:34 (15 years ago)
Author:
delcambre
Message:
  • Update graphic first page
Location:
trunk/root
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/root/static/vote.css

    r54 r68  
    66td { 
    77    padding: 4px; 
     8} 
     9 
     10h1 { 
     11        border-bottom:1px solid #E3AB2C; 
     12        color:#000000; 
     13        margin-left:50px; 
     14        text-align:left; 
     15        width:500px; 
     16        font-size:18px; 
     17} 
     18 
     19a { 
     20        color:#3344FF; 
     21        font-weight:bold; 
    822} 
    923 
     
    92106#admin_login {} 
    93107 
    94 #open_poll {} 
     108#global_poll { 
     109    margin-left:30px; 
     110} 
    95111 
    96 #comming_poll {} 
     112#open_poll { 
     113    color:#E3AB2C; 
     114} 
    97115 
    98 #closed_poll {} 
     116#comming_poll { 
     117    color:#E3AB2C; 
     118} 
     119 
     120#closed_poll { 
     121    color:#E3AB2C; 
     122} 
    99123 
    100124#ballot_list {} 
  • trunk/root/templates/default.tt

    r51 r68  
    55[% FOREACH id = vote.list_running_vote %] 
    66[% IF loop.first %] 
     7<div id="global_poll"> 
    78<div id="open_poll"> 
    8 <p>Vote en cours</p> 
     9<h1>Vote en cours</h1> 
    910<table> 
    1011<tbody> 
    1112[% END %] 
    1213<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> 
     14<td><lu><li><a href="[% c.uri_for( '/vote', id ) %]">[% vote.vote_info(id).label | html %]</a></lu></td></td> 
     15<td>&gt;<a href="[% c.uri_for( '/ballot', id ) %]"> Voter</a></td> 
    1516</tr> 
    1617[% IF loop.last %] 
     
    2425[% IF loop.first %] 
    2526<div id="comming_poll"> 
    26 <p>Vote à venir</p> 
     27<h1>Vote à venir</h1> 
    2728<table> 
    2829<tbody> 
    2930[% END %] 
    3031<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> 
     32<td><lu><li><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a></li></lu></td> 
     33<td>&gt;<a href="[% c.uri_for( '/admin', id ) %]"> Administrer</a></td> 
    3334</tr> 
    3435[% IF loop.last %] 
     
    4344[% IF loop.first %] 
    4445<div id="closed_poll"> 
    45 <p>Vote Fermé</p> 
     46<h1>Vote Ferm&eacute;</h1> 
    4647<table> 
    4748<tbody> 
    4849[% END %] 
    4950<tr> 
    50 <td><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a></td> 
     51<td><lu><li><a href="[% c.uri_for( 'vote', id ) %]">[% vote.vote_info(id).label | html %]</a></lu></td></td> 
    5152</tr> 
    5253[% IF loop.last %] 
     
    5455</table> 
    5556</div> 
     57</div> 
    5658[% END %] 
    5759[% END %] 
Note: See TracChangeset for help on using the changeset viewer.