Happy New Year !
[platal.git] / templates / newsletter / statistics.tpl
CommitLineData
a8d1ec11
SJ
1{**************************************************************************}
2{* *}
ba6ae046 3{* Copyright (C) 2003-2013 Polytechnique.org *}
a8d1ec11
SJ
4{* http://opensource.polytechnique.org/ *}
5{* *}
6{* This program is free software; you can redistribute it and/or modify *}
7{* it under the terms of the GNU General Public License as published by *}
8{* the Free Software Foundation; either version 2 of the License, or *}
9{* (at your option) any later version. *}
10{* *}
11{* This program is distributed in the hope that it will be useful, *}
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14{* GNU General Public License for more details. *}
15{* *}
16{* You should have received a copy of the GNU General Public License *}
17{* along with this program; if not, write to the Free Software *}
18{* Foundation, Inc., *}
19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
20{* *}
21{**************************************************************************}
22
23{include file="newsletter/header.tpl" current="stats"}
24
ccabe1ac
SJ
25<p>
26 Il y a actuellement {$count} inscrits aux envois, parmi lesquels {$lost} n'ont aucune redirection active.
27 En particulier, il y a {$count_female} femmes, parmi lesquelles {$lost_female} n'ont aucune redirection active.
28</p>
a8d1ec11 29
ccabe1ac
SJ
30<table class="bicol">
31{foreach from=$data item=education key=cycle}
32 <tr>
33 <th colspan="3">Cycle {$cycle}</th>
34 </tr>
35 <tr>
36 <td class="titre">Décade</td>
37 <td class="titre">Total (dont perdus)</td>
38 <td class="titre">Femmes (dont perdues)</td>
39 </tr>
40 {foreach from=$education item=counts key=period}
41 <tr>
42 <td>{$period}</td>
43 <td>{$counts.count} ({$counts.lost})</td>
44 <td>{$counts.count_female} ({$counts.lost_female})</td>
45 </tr>
46 {/foreach}
47{/foreach}
48</table>
a8d1ec11
SJ
49
50{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}