Happy New Year!
[platal.git] / templates / admin / add_accounts.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2011 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 <h1>Mise à jour de l'annuaire</h1>
24
25 {if $newAccounts}
26 <p>
27   Les comptes suivants ont été ajoutés&nbsp;:
28   <ul>
29   {foreach from=$newAccounts key=hruid item=name}
30     <li><a href="{$platal->ns}admin/user/{$hruid}">{$name}</a></li>
31   {/foreach}
32   </ul>
33 </p>
34 {/if}
35
36 {if !$add_type}
37 <form action="{$platal->pl_self()}" method="post">
38 <table class="tinybicol">
39   <tr>
40     <td class="center">
41       <strong>Ajouter&nbsp;:</strong>
42       <label><input type="radio" name="add_type" value="promo" checked="checked" /> une promotion</label> -
43       <label><input type="radio" name="add_type" value="account" /> des comptes seuls</label><br />
44     </td>
45   </tr>
46   <tr>
47     <td class="center">
48       <strong>Mettre à jour&nbsp;:</strong>
49       <label><input type="radio" name="add_type" value="ax_id" /> les matricules AX</label>
50     </td>
51   </tr>
52   <tr>
53     <td class="center"><input type='submit' value='Continuer' /></td>
54   </tr>
55 </table>
56 </form>
57
58 {else}
59 <form action="{$platal->pl_self()}" method="post">
60 <input type="hidden" name="add_type" value="{$add_type}" />
61 <table class="tinybicol">
62   <tr>
63     <td class="center">
64       <strong>Promotion&nbsp;:</strong>
65       <input type="text" name="promotion" size="4" maxlength="4" />
66     </td>
67   </tr>
68 {if $add_type eq 'promo'}
69   <tr>
70     <td class="center">
71       <strong>Formation&nbsp;:</strong>
72       <label><input type="radio" name="edu_type" value="X" checked="checked" /> X</label> -
73       <label><input type="radio" name="edu_type" value="M" /> master</label> -
74       <label><input type="radio" name="edu_type" value="D" /> doctorat</label>
75     </td>
76   </tr>
77 </table>
78 <br />
79 <table class="bicol">
80   <tr>
81     <td>Nom</td>
82     <td>Prénom</td>
83     <td>Date de naissance</td>
84     <td>Sexe (F/M)</td>
85     <td>Matricule École</td>
86     <td>Matricule AX</td>
87   </tr>
88   <tr>
89     <td colspan="6"><textarea name="people" rows="20" cols="80"></textarea></td>
90   </tr>
91 </table>
92
93 {elseif $add_type eq 'account'}
94   <tr>
95     <td class="center">
96       <strong>Type de compte&nbsp;:</strong>
97       <select name="type">
98       {foreach from=$account_types item=type}
99         <option value="{$type}">{$type}</option>
100       {/foreach}
101       </select>
102     </td>
103   </tr>
104 </table>
105 <br />
106 <table class="bicol">
107   <tr>
108     <td>Nom</td>
109     <td>Prénom</td>
110     <td>Adresse email</td>
111     <td>Sexe (F/M)</td>
112   </tr>
113   <tr>
114     <td colspan="4"><textarea name="people" rows="20" cols="80"></textarea></td>
115   </tr>
116 </table>
117
118 {elseif $add_type eq 'ax_id'}
119 </table>
120 <br />
121 <table class="bicol">
122   <tr>
123     <td>Nom</td>
124     <td>Prénom</td>
125     <td>Matricule AX</td>
126   </tr>
127   <tr>
128     <td colspan="4"><textarea name="people" rows="20" cols="80"></textarea></td>
129   </tr>
130 </table>
131 {/if}
132
133 <p class="center">
134   <strong>Séparateur&nbsp;:</strong>
135   <input type="text" name="separator" value=";" size="1" maxlength="1" /><br /><br />
136   <input type='submit' value='Ajouter' />
137 </p>
138 </form>
139 {/if}
140
141 {* vim:set et sws=2 sts=2 sw=2 enc=utf-8: *}