2006 => 2007 Happy New Year\!
[platal.git] / templates / admin / ax-xorg.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 Polytechnique.org                             *}
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
24 <h1>
25   Vérifier notre table de correspondance entre l'annuaire de l'AX et le nôtre
26 </h1>
27
28 <h2>
29   Liste des camarades qui n'apparaissent pas sous le même nom dans les deux annuaires
30 </h2>
31
32 <table class="bicol" summary="liste des absents de notre annuaire">
33   <tr>
34     <th>Promo</th>
35     <th>Nom X.org</th>  <th>Prénom X.org</th>   <th>Mat X.org</th>
36     <th>Nom AX</th>     <th>Prénom AX</th>      <th>Mat AX</th>
37   </tr>
38 {foreach item=x from=$diffs}
39   <tr class="{cycle values="impair,pair"}">
40     <td>{$x.promo}</td>
41     <td>{$x.nom}</td>   <td>{$x.prenom}</td>    <td>{$x.mat}</td>
42     <td>{$x.nomax}</td> <td>{$x.prenomax}</td>  <td>{$x.matax}</td>
43   </tr>
44 {/foreach}
45 </table>
46
47 <p>
48   <strong>{$diffs|@count} camarades ont un état civil différent dans les 2 annuaires.</strong>
49 </p>
50
51 <br />
52 <br />
53
54 <h2>
55   Liste des camarades de l'annuaire de l'AX qui manquent à notre annuaire
56 </h2>
57
58 <table class="bicol" summary="liste des absents de notre annuaire">
59   <tr>
60     <th>Promo</th>  <th>Nom</th>  <th>Prénom</th>
61   </tr>
62 {foreach item=x from=$mank}
63   <tr class="{cycle values="impair,pair"}">
64     <td>{$x.promo}</td>
65     <td>{$x.nom} {if $x.nom_patro neq $x.nom}({$c.nom_patro}){/if}</td>
66     <td>{$x.prenom}</td>
67   </tr>
68 {/foreach}
69 </table>
70 <p>
71   <strong>{$mank|@count} camarades sont absents de notre annuaire.</strong>
72 </p>
73
74 <br />
75 <br />
76
77 <h2>
78   Liste des camarades de notre annuaire qui ne sont pas dans l'annuaire de l'AX
79 </h2>
80
81 <table class="bicol" summary="liste des absents de l'AX">
82   <tr>
83     <th>Promo</th>        <th>Nom</th>        <th>Prénom</th>
84   </tr>
85 {foreach item=x from=$plus}
86   <tr class="{cycle values="impair,pair"}">
87     <td>{$x.promo}</td>   <td>{$x.nom}</td>   <td>{$x.prenom}</td>
88   </tr>
89 {/foreach}
90 </table>
91
92 <p>
93   <strong>{$plus|@count} camarades sont absents de l'annuaire de l'AX.</strong>
94 </p>
95
96 {* vim:set et sw=2 sts=2 sws=2: *}