Ignore:
Timestamp:
01/29/16 02:59:10 (8 years ago)
Author:
nanardon
Message:

Add option to employment graph, add translation

File:
1 edited

Legend:

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

    r1680 r1691  
     1 
     2<form action="[% c.uri_for() %]"> 
     3<label for=key></label>[% l('Sort by') %]</label> 
     4<select name=key> 
     5<option value=department 
     6    [% "selected" IF c.req.param('key') == 'department' %]>[% l('Department') | html %]</option> 
     7<option value=contratType 
     8    [% "selected" IF c.req.param('key') == 'contratType' %]>[% l('Status') | html %]</option> 
     9</select><br> 
     10<input name=stacked type=checkbox value=on [% 'checked' IF c.req.param('stacked') %]> 
     11<label for=stacked>[% l('Stacked') %]</label> 
     12<input type=submit> 
     13</form> 
    114 
    215<div id="charth" style="width:80%; height:600px; clear: both"></div> 
     
    1629            { 
    1730                title: 'Evolution des status', 
     31                [% IF c.req.param('stacked') %] 
    1832                stackSeries: true, 
     33                [% END %] 
    1934                axes: { 
    2035                    xaxis: { 
     
    3651                }, 
    3752                seriesDefaults: { 
     53                    [% IF c.req.param('stacked') %] 
    3854                    fill: true, 
     55                    [% END %] 
    3956                    showMarker: false, 
    4057                    shadow: false, 
Note: See TracChangeset for help on using the changeset viewer.