Ignore:
Timestamp:
12/18/15 07:25:11 (9 years ago)
Author:
nanardon
Message:
  • Add expiration list to expiration page and Employment things
Location:
trunk/LATMOS-Accounts-Web/root
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LATMOS-Accounts-Web/root/html/summary/expire/index.tt

    r1499 r1500  
    6161 
    6262 
    63 <div id="charth" style="width:80%; height:600px; clear: both"></div> 
     63<div id="charth" style="width:80%; height:600px; clear: both"> 
     64</div> 
     65<h3>Expiration à venir</h3> 
     66[% FOREACH ex = expirelist.keys.sort %] 
     67[% IF loop.first %] 
     68<table class=datalist> 
     69[% END %] 
     70<tr> 
     71<th>[% ex | html %]</th> 
     72<td> 
     73    [% FOREACH exuser = expirelist.$ex.sort %] 
     74    [% IF loop.first %] 
     75    <ul> 
     76    [% END %] 
     77    [% ouser = c.model('Accounts').db.get_object('user', exuser) %] 
     78    <li>[% ouser | html %]</li> 
     79    [% IF loop.last %] 
     80    </ul> 
     81    [% END %] 
     82    [% END %] 
     83</td> 
     84</tr> 
     85[% IF loop.last %] 
     86</table> 
     87[% END %] 
     88[% END %] 
     89</div> 
  • trunk/LATMOS-Accounts-Web/root/static/style.css

    r1400 r1500  
    55    vertical-align: middle; 
    66    padding: 0em 
     7} 
     8 
     9input { 
     10    font-size: 0.95em; 
    711} 
    812 
     
    4852    height:1.5em; 
    4953    vertical-align: middle; 
     54    font-size: 1em; 
    5055} 
    5156/* Button like */ 
     
    213218.datatable td { 
    214219    text-align: right; 
     220} 
     221 
     222.datalist table, .datalist th, .datalist td  { 
     223    border: 1px solid black; 
     224    font-size: 0.8em; 
     225} 
     226 
     227.datalist th, .datalist td  { 
     228    padding-top: 0.3em; 
     229    padding-bottom: 0.3em; 
     230    padding-left: 0.5em; 
     231    padding-right: 0.5em; 
     232    vertical-align: top; 
     233} 
     234 
     235.datalist td { 
     236    text-align: left; 
     237} 
     238 
     239.active tr, .active td { 
     240    font-weight: bold; 
    215241} 
    216242 
Note: See TracChangeset for help on using the changeset viewer.