Happy New Year!
[platal.git] / templates / admin / add_secondary_edu.tpl
CommitLineData
edc03014
SJ
1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 Polytechnique.org *}
edc03014
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<h1>Ajout de formations secondaires</h1>
24
25<form action="{$platal->pl_self()}" method="post">
26<table class="tinybicol" style="margin-bottom: 1em">
27 <tr>
28 <td>
29 <strong>Promotion&nbsp;:</strong>
30 </td>
31 <td>
32 <input type="text" name="promotion" size="4" maxlength="4" {if t($promotion)}value="{$promotion}"{/if} />
33 </td>
34 </tr>
35 <tr>
36 <td>
37 <strong>Formation&nbsp;:</strong>
38 </td>
39 <td>
40 <label><input type="radio" name="degree" value="Master" {if !t($degree) || $degree eq "Master"}checked="checked"{/if} /> master</label> -
41 <label><input type="radio" name="degree" value="Doctorat" {if t($degree) && $degree eq "Doctorat"}checked="checked"{/if} /> doctorat</label>
42 </td>
43 </tr>
44 <tr>
45 <td>
46 <strong>Forcer l'ajout&nbsp;:</strong><br /><small>(en cas de formation du même niveau préexistante)</small>
47 </td>
48 <td>
49 <input type="checkbox" name="force_addition" />
50 </td>
51 </tr>
52</table>
53
54<table class="bicol">
55 <tr>
56 <td>Nom</td>
57 <td>Prénom</td>
58 <td>Promotion principale</td>
59 </tr>
60 <tr>
61 <td colspan="3"><textarea name="people" rows="20" cols="80">{if t($people)}{$people}{/if}</textarea></td>
62 </tr>
63</table>
64
65<p class="center">
66 <strong>Séparateur&nbsp;:</strong>
67 <input type="text" name="separator" value=";" size="1" maxlength="1" /><br /><br />
68 <input type="submit" name="verify" value="Vérifier" />&nbsp;&nbsp;&nbsp;&nbsp;<input type="submit" name="add" value="Ajouter" />
69</p>
70</form>
71
72{* vim:set et sws=2 sts=2 sw=2 enc=utf-8: *}