Merge commit 'origin/master' into fusionax
[platal.git] / templates / search / adv.form.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2009 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>Recherche dans l'annuaire</h1>
24
25 <script type="text/javascript">// <!--
26   var baseurl = platal_baseurl + "search/";
27   {literal}
28   // display an autocomplete row : blabla (nb of found matches)
29   function make_format_autocomplete(block) {
30     return function(row) {
31         regexp = new RegExp('(' + RegExp.escape(block.value) + ')', 'i');
32
33         name = row[0].replace(regexp, '<strong>$1<\/strong>');
34
35         if (row[1] === "-1") {
36           return '...';
37         }
38
39         camarades = (row[1] > 1) ? "camarades" : "camarade";
40
41         return name + '<em>&nbsp;&nbsp;-&nbsp;&nbsp;' + row[1] + '&nbsp;' + camarades + '<\/em>';
42       };
43   }
44
45   // when changing country, open up region choice
46   function changeCountry(a2) {
47     $(".autocompleteTarget[@name='country']").attr('value',a2);
48
49     if (a2) {
50       $(".autocomplete[@name='countryTxt']").addClass('hidden_valid');
51
52       $("[@name='region']").parent().load(baseurl + 'list/region/', { country:a2 }, function() {
53           if ($("select[@name='region']").children("option").size() > 1) {
54             $("select[@name='region']").attr('value', '{/literal}{$smarty.request.region}{literal}');
55
56             $("tr#region_ln").show();
57           } else {
58             $("select[@name='region']").attr('value', '');
59
60             $("tr#region_ln").hide();
61           }
62         });
63     } else {
64       $(".autocomplete[@name='countryTxt']").removeClass('hidden_valid');
65
66       $("select[@name='region']").attr('value', '');
67
68       $("tr#region_ln").hide();
69     }
70   }
71
72   // when changing school, open diploma choice
73   function changeSchool(schoolId) {
74     $(".autocompleteTarget[@name='school']").attr('value',schoolId);
75
76     if (schoolId) {
77       $(".autocomplete[@name='schoolTxt']").addClass('hidden_valid');
78     } else {
79       $(".autocomplete[@name='schoolTxt']").removeClass('hidden_valid');
80     }
81
82     $("[@name='diploma']").parent().load(baseurl + 'list/diploma/', { school:schoolId }, function() {
83         $("select[@name='diploma']").attr('value', '{/literal}{$smarty.request.diploma}{literal}');
84       });
85   }
86
87   // when choosing autocomplete from list, must validate
88   function select_autocomplete(name) {
89       nameRealField = name.replace(/Txt$/, '');
90
91       // nothing to do if field is not a text field for a list
92       if (nameRealField == name)
93         return null;
94
95       // if changing country, might want to open region choice
96       if (nameRealField == 'country')
97         return function(i) {
98             changeCountry(i.extra[1]);
99           }
100
101       if (nameRealField == 'school')
102         return function(i) {
103             changeSchool(i.extra[1]);
104           }
105
106       // change field in list and display text field as valid
107       return function(i) {
108         nameRealField = this.field.replace(/Txt$/, '');
109
110         $(".autocompleteTarget[@name='"+nameRealField+"']").attr('value',i.extra[1]);
111
112         $(".autocomplete[@name='"+this.field+"']").addClass('hidden_valid');
113       }
114     }
115
116   $(document).ready(function() {
117       $(".autocompleteTarget").hide();
118       $(".autocomplete").show().each(function() {
119         targeted = $("../.autocompleteTarget",this)[0];
120
121         if (targeted && targeted.value) {
122           me = $(this);
123
124           $.get(baseurl + 'list/'+ targeted.name +'/'+targeted.value, {},function(textValue) {
125             me.attr('value', textValue);
126             me.addClass('hidden_valid');
127           });
128         }
129
130         $(this).autocomplete(baseurl + "autocomplete/"+this.name,{
131           selectOnly:1,
132           formatItem:make_format_autocomplete(this),
133           field:this.name,
134           onItemSelect:select_autocomplete(this.name),
135           matchSubset:0,
136           width:$(this).width()});
137         });
138
139       $(".autocomplete").change(function() { $(this).removeClass('hidden_valid'); });
140
141       $(".autocomplete[@name='countryTxt']").change(function() { changeCountry(''); });
142
143       changeCountry({/literal}'{$smarty.request.country}'{literal});
144
145       $(".autocomplete[@name='schoolTxt']").change(function() { changeSchool(''); });
146
147       changeSchool({/literal}'{$smarty.request.school}'{literal});
148
149       $(".autocompleteToSelect").each(function() {
150           var fieldName = $(this).attr('href');
151
152           $(this).attr('href', baseurl + 'list/'+fieldName).click(function() {
153               var oldval = $("input.autocompleteTarget[@name='"+fieldName+"']")[0].value;
154
155               $(".autocompleteTarget[@name='"+fieldName+"']").parent().load(baseurl + 'list/'+fieldName,{},
156                 function(selectBox) {
157                   $(".autocompleteTarget[@name='"+fieldName+"']").remove();
158                   $(".autocomplete[@name='"+fieldName+"Txt']").remove();
159                   $("select[@name='"+fieldName+"']").attr('value', oldval);
160                 });
161
162               return false;
163             });
164         }).parent().find('.autocomplete').change(function() {
165           // If we change the value in the type="text" field, then the value in the 'integer id' field must not be used,
166           // to ensure that, we unset it
167           $(this).parent().find('.autocompleteTarget').val('');
168         });
169     });
170 -->
171 {/literal}</script>
172 <form id="recherche" action="search/adv" method="get">
173   <table class="bicol" cellpadding="3" summary="Recherche">
174     <tr>
175       <th colspan="2">
176         Recherche avancée [<a href="search">&lt;&lt;&lt;&nbsp;Recherche simple</a>]
177       </th>
178     </tr>
179     <tr>
180       <td>Nom</td>
181       <td>
182         <input type="hidden" name="rechercher" value="Chercher"/>
183         <input type="submit" style="display:none"/>
184         <input type="text" class="autocomplete" name="name" size="32" value="{$smarty.request.name}" />
185       </td>
186     </tr>
187     <tr>
188       <td>Prénom</td>
189       <td>
190         <input class="autocomplete" type="text" name="firstname" size="32" value="{$smarty.request.firstname}" />
191       </td>
192     </tr>
193     <tr>
194       <td>Surnom</td>
195       <td>
196         <input class="autocomplete" type="text" name="nickname" size="32" value="{$smarty.request.nickname}" />
197       </td>
198     </tr>
199     <tr>
200       <td>Promotion</td>
201       <td>
202         <select name="egal1">
203           <option value="=" {if $smarty.request.egal1 eq "="}selected="selected"{/if}>&nbsp;=&nbsp;</option>
204           <option value="&gt;=" {if $smarty.request.egal1 eq "&gt;="}selected="selected"{/if}>&nbsp;&gt;=&nbsp;</option>
205           <option value="&lt;=" {if $smarty.request.egal1 eq "&lt;="}selected="selected"{/if}>&nbsp;&lt;=&nbsp;</option>
206         </select>
207         <input type="text" name="promo1" size="4" maxlength="4" value="{$smarty.request.promo1}" />
208         &nbsp;et&nbsp;
209         <select name="egal2">
210           <option value="=" {if $smarty.request.egal2 eq "="}selected="selected"{/if}>&nbsp;=&nbsp;</option>
211           <option value="&gt;=" {if $smarty.request.egal2 eq "&gt;="}selected="selected"{/if}>&nbsp;&gt;=&nbsp;</option>
212           <option value="&lt;=" {if $smarty.request.egal2 neq "&gt;=" && $smarty.request.egal2 neq "="}selected="selected"{/if}>&nbsp;&lt;=&nbsp;</option>
213         </select>
214         <input type="text" name="promo2" size="4" maxlength="4" value="{$smarty.request.promo2}" />
215       </td>
216     </tr>
217     <tr>
218       <td>Sexe</td>
219       <td>
220         <table>
221           <tr>
222             <td style="width:100px">
223               <input type="radio" name="woman" value="0" {if !$smarty.request.woman}checked="checked"{/if} id="woman0"/><label for="woman0">indifférent</label>
224             </td>
225             <td style="width:100px">
226               <input type="radio" name="woman" value="1" {if $smarty.request.woman eq 1}checked="checked"{/if} id="woman1"/><label for="woman1">homme</label>
227             </td>
228             <td style="width:100px">
229               <input type="radio" name="woman" value="2" {if $smarty.request.woman eq 2}checked="checked"{/if} id="woman2"/><label for="woman2">femme</label>
230             </td>
231           </tr>
232         </table>
233       </td>
234     </tr>
235     <tr>
236       <td>Sur Polytechnique.org</td>
237       <td>
238         <table>
239           <tr>
240             <td style="width:100px">
241               <input type="radio" name="subscriber" value="0" {if !$smarty.request.subscriber}checked="checked"{/if} id="subscriber0"/><label for="subscriber0">indifférent</label>
242             </td>
243             <td style="width:100px">
244               <input type="radio" name="subscriber" value="1" {if $smarty.request.subscriber eq 1}checked="checked"{/if} id="subscriber1"/><label for="subscriber1">inscrit</label>
245             </td>
246             <td style="width:100px">
247               <input type="radio" name="subscriber" value="2" {if $smarty.request.subscriber eq 2}checked="checked"{/if} id="subscriber2"/><label for="subscriber2">non inscrit</label>
248             </td>
249           </tr>
250         </table>
251       </td>
252     </tr>
253     <tr>
254       <td>En vie</td>
255       <td>
256         <table>
257           <tr>
258             <td style="width:100px">
259               <input type="radio" name="alive" value="0" {if !$smarty.request.alive}checked="checked"{/if} id="alive0"/><label for="alive0">indifférent</label>
260             </td>
261             <td style="width:100px">
262               <input type="radio" name="alive" value="1" {if $smarty.request.alive eq 1}checked="checked"{/if} id="alive1"/><label for="alive1">vivant</label>
263             </td>
264             <td style="width:100px">
265               <input type="radio" name="alive" value="2" {if $smarty.request.alive eq 2}checked="checked"{/if} id="alive2"/><label for="alive2">décédé</label>
266             </td>
267           </tr>
268         </table>
269       </td>
270     </tr>
271     <tr>
272       <td colspan="2">
273         <input type="checkbox" name="with_soundex" value="1" {if $smarty.request.with_soundex}checked="checked"{/if} id="sdxn" />
274         <label for="sdxn">Étendre par proximité sonore (uniquement sur nom et prénom).</label>
275       </td>
276     </tr>
277     <tr>
278       <th colspan="2">Géographie</th>
279     </tr>
280     <tr>
281       <td>Ville ou code postal</td>
282       <td><input type="text" class="autocomplete" name="city" size="32" value="{$smarty.request.city}" /></td>
283     </tr>
284     <tr>
285       <td>Pays</td>
286       <td>
287         <input name="countryTxt" type="text" class="autocomplete" style="display:none" size="32"
288                value="{$smarty.request.countryTxt}"/>
289         <input name="country" class="autocompleteTarget" type="hidden" value="{$smarty.request.country}"/>
290         <a href="country" class="autocompleteToSelect">{icon name="table" title="Tous les pays"}</a>
291       </td>
292     </tr>
293     <tr id="region_ln">
294       <td>Région ou département</td>
295       <td>
296         <input name="region" type="hidden" size="32" value="{$smarty.request.region}"/>
297       </td>
298     </tr>
299     <tr>
300       <td colspan="2">
301       <label for="only_current"><input name="only_current" id="only_current" type="checkbox"{if $smarty.request.only_current}  
302 checked="checked"{/if}/>Chercher uniquement les adresses où les camarades sont actuellement.</label></td>
303     </tr>
304     <tr>
305       <th colspan="2">Activité</th>
306     </tr>
307     <tr>
308       <td>Entreprise</td>
309       <td><input type="text" class="autocomplete" name="entreprise" size="32" value="{$smarty.request.entreprise}" /></td>
310     </tr>
311     <tr>
312       <td>Fonction</td>
313       <td>
314         <input name="fonctionTxt" type="text" class="autocomplete" style="display:none" size="32"
315                value="{$smarty.request.fonctionTxt}"/>
316         <input name="fonction" class="autocompleteTarget" type="hidden" value="{$smarty.request.fonction}"/>
317         <a href="fonction" class="autocompleteToSelect">{icon name="table" title="Toutes les fonctions"}</a>
318       </td>
319     </tr>
320     <tr>
321       <td>Description</td>
322       <td><input type="text" class="autocomplete" name="description" size="32" value="{$smarty.request.description}" /></td>
323     </tr>
324     <tr>
325       <td>Secteur</td>
326       <td>
327         <input name="secteurTxt" type="text" class="autocomplete" style="display:none" size="32"
328                value="{$smarty.request.secteurTxt}"/>
329         <input name="secteur" class="autocompleteTarget" type="hidden" value="{$smarty.request.secteur}"/>
330         <a href="secteur" class="autocompleteToSelect">{icon name="table" title="Tous les secteurs"}</a>
331       </td>
332     </tr>
333     <tr>
334       <td>CV contient</td>
335       <td><input type="text" name="cv" size="32" value="{$smarty.request.cv}" /></td>
336     </tr>
337     <tr>
338       <td colspan="2">
339         <input type='checkbox' name='only_referent' {if $smarty.request.only_referent}checked='checked'{/if} id="only_referent"/>
340         <label for="only_referent">Chercher uniquement parmi les camarades se proposant comme référents.</label>
341       </td>
342     </tr>
343     <tr>
344       <th colspan="2">Divers</th>
345     </tr>
346     <tr>
347       <td>Nationalité</td>
348       <td>
349         <input name="nationaliteTxt" type="text" class="autocomplete" style="display:none" size="32"
350                value="{$smarty.request.nationaliteTxt}"/>
351         <input name="nationalite" class="autocompleteTarget" type="hidden" value="{$smarty.request.nationalite}"/>
352         <a href="nationalite" class="autocompleteToSelect">{icon name="table" title="Toutes les nationalités"}</a>
353       </td>
354     </tr>
355     <tr>
356       <td>Binet</td>
357       <td>
358         <input name="binetTxt" type="text" class="autocomplete" style="display:none" size="32"
359                value="{$smarty.request.binetTxt}"/>
360         <input name="binet" class="autocompleteTarget" type="hidden" value="{$smarty.request.binet}"/>
361         <a href="binet" class="autocompleteToSelect">{icon name="table" title="Tous les binets"}</a>
362       </td>
363     </tr>
364     <tr>
365       <td>Groupe X</td>
366       <td>
367         <input name="groupexTxt" type="text" class="autocomplete" style="display:none" size="32"
368                value="{$smarty.request.groupexTxt}"/>
369         <input name="groupex" class="autocompleteTarget" type="hidden" value="{$smarty.request.groupex}"/>
370         <a href="groupex" class="autocompleteToSelect">{icon name="table" title="Tous les groupes X"}</a>
371       </td>
372     </tr>
373     <tr>
374       <td>Section</td>
375       <td>
376         <input name="sectionTxt" type="text" class="autocomplete" style="display:none" size="32"
377                value="{$smarty.request.sectionTxt}"/>
378         <input name="section" class="autocompleteTarget" type="hidden" value="{$smarty.request.section}"/>
379         <a href="section" class="autocompleteToSelect">{icon name="table" title="Toutes les sections"}</a>
380       </td>
381     </tr>
382     <tr>
383       <td>Formation</td>
384       <td>
385         <input name="schoolTxt" type="text" class="autocomplete" style="display:none" size="32"
386                value="{$smarty.request.schoolTxt}"/>
387         <input name="school" class="autocompleteTarget" type="hidden" value="{$smarty.request.school}"/>
388         <a href="school" class="autocompleteToSelect">{icon name="table" title="Toutes les formations"}</a>
389       </td>
390     </tr>
391     <tr>
392       <td>Diplôme</td>
393       <td>
394         <input name="diploma" size="32" value="{$smarty.request.diploma}"/>
395       </td>
396     </tr>
397     <tr>
398       <td>Commentaire contient</td>
399       <td><input type="text" name="free" size="32" value="{$smarty.request.free}" /></td>
400     </tr>
401     <tr>
402       <td>Numéro de téléphone</td>
403       <td><input type="text" name="phone_number" size="32" value="{$smarty.request.phone_number}"/></td>
404     </tr>
405     <tr>
406       <td style="vertical-align: middle">
407         <span>Networking et sites webs</span>
408       </td>
409       <td>
410         <table>
411           <tr>
412             <td style="padding-left: 0px;">
413               <input type="text" name="networking_address" size="32" value="{$smarty.request.networking_address}" />
414             </td>
415             <td>
416               <input type="text" name="networking_typeTxt" class="autocomplete" size="10" value="{$smarty.request.networking_typeTxt}" />
417               <input name="networking_type" class="autocompleteTarget" type="hidden" value="{$smarty.request.networking_type}"/>
418               <a href="networking_type" class="autocompleteToSelect">{icon name="table" title="Tous les types d'adresse"}</a>
419             </td>
420           </tr>
421         </table>
422       </td>
423     </tr>
424         {if $smarty.session.auth ge AUTH_COOKIE}
425     <tr>
426       <td colspan="2">
427           <input type='checkbox' name='order' value='date_mod' {if $smarty.request.order eq "date_mod"}checked='checked'{/if} id="order"/>
428           <label for="order">Mettre les fiches modifiées récemment en premier.</label>
429       </td>
430     </tr>
431     <tr>
432       <td colspan="2">
433            <input type='checkbox' name='exact' id="exact" {if $smarty.request.exact}checked='checked'{/if} value='1'/>
434            <label for="exact">Faire une recherche exacte.</label>
435       </td>
436     </tr>
437         {/if}
438     <tr><td colspan="2"></td></tr>
439     <tr>
440       <td colspan="2" style="text-align: center">
441           <input type="submit" value="Chercher" />
442       </td>
443     </tr>
444   </table>
445 </form>
446 <p>
447   <small><strong>N.B. :</strong> le caractère joker * peut remplacer une ou plusieurs lettres dans les recherches.</small>
448 </p>
449
450 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}