bb34e8674921bca42e421addb51b48d4ade04092
[platal.git] / templates / include / select_promo.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2013 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 <select name="{$egal1}" onchange="updatepromofields($('select[name={$egal1}]'), $('input[name={$egal2}]'), $('input[name={$promo2}]'))" style="text-align: center">
24   <option value="=" {if $promo_data.$egal1 eq "="}selected="selected"{/if}>&nbsp;=&nbsp;</option>
25   <option value="&gt;=" {if $promo_data.$egal1 eq "&gt;="}selected="selected"{/if}>&nbsp;&gt;=&nbsp;</option>
26   <option value="&lt;=" {if $promo_data.$egal1 eq "&lt;="}selected="selected"{/if}>&nbsp;&lt;=&nbsp;</option>
27 </select>
28 <input type="text" name="{$promo1}" size="4" maxlength="4" value="{$promo_data.$promo1}" />
29 &nbsp;et&nbsp;
30 <input type="text" name="{$egal2}" size="1" style="text-align:center" {if t($promo_data.$egal1) && $promo_data.$egal1 neq "="}value="{$promo_data.$egal2}"{else}value="&gt;=" disabled="disabled"{/if} readonly="readonly" />
31 <input type="text" name="{$promo2}" size="4" maxlength="4" {if t($promo_data.$egal1) && $promo_data.$egal1 neq "="}value="{$promo_data.$promo2}"{else}disabled="disabled"{/if} />
32 <select name="edu_type" style="text-align: center">
33   <option value="{#UserFilter::GRADE_ING#}" {if $promo_data.$edu_type eq #UserFilter::GRADE_ING#}selected="selected"{/if}>X</option>
34   <option value="{#UserFilter::GRADE_MST#}" {if $promo_data.$edu_type eq #UserFilter::GRADE_MST#}selected="selected"{/if}>Master</option>
35   <option value="{#UserFilter::GRADE_PHD#}" {if $promo_data.$edu_type eq #UserFilter::GRADE_PHD#}selected="selected"{/if}>Docteur</option>
36 </select>
37
38 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}