Happy New Year!
[platal.git] / templates / search / adv.form.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
12262f13 3{* Copyright (C) 2003-2011 Polytechnique.org *}
0337d704 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
1f17ab93 23<h1>Recherche dans l'annuaire</h1>
0337d704 24
39394cbf
SJ
25{if hasPerm('edit_directory,admin') && t($suggestAddresses)}
26<p class="center"><strong>Voulez-vous télécharger le <a href="{$globals->baseurl}/search/adv/addresses{$plset_args}">tableau des adresses postales</a> pour la recette précédente&nbsp;?</strong></p>
27{/if}
28
21fb012b
PC
29{javascript name=jquery.form}
30
f06a6d2b
OLF
31<script type="text/javascript">// <!--
32 var baseurl = platal_baseurl + "search/";
33 {literal}
fb6dc875
PC
34 String.prototype.htmlEntities = function () {
35 return this.replace(/&/g,'&amp;').replace(new RegExp('<','g'),'&lt;').replace(/>/g,'&gt;');
36 };
f06a6d2b
OLF
37 // display an autocomplete row : blabla (nb of found matches)
38 function make_format_autocomplete(block) {
39 return function(row) {
40 regexp = new RegExp('(' + RegExp.escape(block.value) + ')', 'i');
f1de811f 41
fb6dc875 42 name = row[0].htmlEntities().replace(regexp, '<strong>$1<\/strong>');
f1de811f 43
b3ec63d5 44 if (row[1] === "-1") {
6e828e47 45 return '&hellip;';
66f2b6b3 46 }
f1de811f 47
fb6dc875
PC
48 if (row[1] === "-2") {
49 return '<em>aucun camarade trouvé pour '+row[0].htmlEntities()+'<\/em>';
50 }
51
8a28e579
SJ
52 camarades = (row[1] > 1) ? "camarades" : "camarade";
53
fb6dc875 54 return name + '<em>&nbsp;&nbsp;-&nbsp;&nbsp;' + row[1].htmlEntities() + '&nbsp;' + camarades + '<\/em>';
f06a6d2b
OLF
55 };
56 }
f1de811f 57
86ab1c8f 58 // when changing country, open up administrativearea choice
f06a6d2b 59 function changeCountry(a2) {
1bdd08a7 60 $(".autocompleteTarget[name='country']").attr('value',a2);
f1de811f 61
f06a6d2b 62 if (a2) {
1bdd08a7 63 $(".autocomplete[name='countryTxt']").addClass('hidden_valid');
f1de811f 64
86ab1c8f
SJ
65 $("[name='administrativearea']").parent().load(baseurl + 'list/administrativearea/', { country:a2 }, function() {
66 if ($("select[name='administrativearea']").children("option").size() > 1) {
67 $("select[name='administrativearea']").attr('value', '{/literal}{$smarty.request.administrativearea}{literal}');
f1de811f 68
86ab1c8f 69 $("tr#administrativearea_list").show();
66f2b6b3 70 } else {
86ab1c8f 71 $("select[name='administrativearea']").attr('value', '');
f1de811f 72
86ab1c8f 73 $("tr#administrativearea_list").hide();
66f2b6b3 74 }
f06a6d2b
OLF
75 });
76 } else {
1bdd08a7 77 $(".autocomplete[name='countryTxt']").removeClass('hidden_valid');
f1de811f 78
86ab1c8f
SJ
79 $("select[name='administrativearea']").attr('value', '');
80 $("select[name='subadministrativearea']").attr('value', '');
f1de811f 81
86ab1c8f
SJ
82 $("tr#administrativearea_list").hide();
83 $("tr#subadministrativearea_list").hide();
84 }
85 }
86
87 // when changing administrativearea, open up subadministrativearea choice
88 function changeAdministrativeArea(id) {
89 if (id) {
90 $("[name='subadministrativearea']").parent().load(baseurl + 'list/subadministrativearea/', { administrativearea:id }, function() {
91 if ($("select[name='subadministrativearea']").children("option").size() > 1) {
92 $("select[name='subadministrativearea']").attr('value', '{/literal}{$smarty.request.subadministrativearea}{literal}');
93 $("tr#subadministrativearea_list").show();
94 } else {
95 $("select[name='subadministrativearea']").attr('value', '');
96 $("tr#subadministrativearea_list").hide();
97 }
98 });
99 } else {
100 $("select[name='subadministrativearea']").attr('value', '');
101 $("tr#subadministrativearea_list").hide();
f06a6d2b
OLF
102 }
103 }
f1de811f 104
f06a6d2b
OLF
105 // when changing school, open diploma choice
106 function changeSchool(schoolId) {
1bdd08a7 107 $(".autocompleteTarget[name='school']").attr('value',schoolId);
f1de811f 108
f06a6d2b 109 if (schoolId) {
1bdd08a7 110 $(".autocomplete[name='schoolTxt']").addClass('hidden_valid');
f06a6d2b 111 } else {
1bdd08a7 112 $(".autocomplete[name='schoolTxt']").removeClass('hidden_valid');
f06a6d2b 113 }
f9817768 114
96d80a35
VZ
115 $("[name='diploma']").parent().load(baseurl + 'list/diploma/', { school:schoolId }, function() {
116 $("select[name='diploma']").attr('value', '{/literal}{$smarty.request.diploma}{literal}');
f9817768 117 });
f06a6d2b 118 }
f1de811f 119
3ac45f10
PC
120 // when choosing a job term in tree, hide tree and set job term field
121 function searchForJobTerm(treeid, jtid, full_name) {
122 $(".term_tree").remove();
123 $("input[name='jobtermTxt']").val(full_name).addClass("hidden_valid").show();
124 $("input[name='jobterm']").val(jtid);
125 }
126
fb6dc875
PC
127 function cancel_autocomplete(field, realfield) {
128 $(".autocomplete[name='"+field+"']").removeClass('hidden_valid').val('').focus();
129 if (typeof(realfield) != "undefined") {
130 $(".autocompleteTarget[name='"+realfield+"']").val('');
131 }
132 return;
133 }
134
f06a6d2b
OLF
135 // when choosing autocomplete from list, must validate
136 function select_autocomplete(name) {
137 nameRealField = name.replace(/Txt$/, '');
f1de811f 138
f06a6d2b
OLF
139 // nothing to do if field is not a text field for a list
140 if (nameRealField == name)
141 return null;
f1de811f 142
86ab1c8f 143 // if changing country, might want to open administrativearea choice
f06a6d2b
OLF
144 if (nameRealField == 'country')
145 return function(i) {
fb6dc875
PC
146 if (i.extra[0] < 0) {
147 cancel_autocomplete('countryTxt', 'country');
148 i.extra[1] = '';
149 }
f06a6d2b 150 changeCountry(i.extra[1]);
66f2b6b3 151 }
f1de811f 152
f06a6d2b
OLF
153 if (nameRealField == 'school')
154 return function(i) {
fb6dc875
PC
155 if (i.extra[0] < 0) {
156 cancel_autocomplete('schoolTxt', 'school');
157 i.extra[1] = '';
158 }
f06a6d2b
OLF
159 changeSchool(i.extra[1]);
160 }
f1de811f 161
f06a6d2b
OLF
162 // change field in list and display text field as valid
163 return function(i) {
164 nameRealField = this.field.replace(/Txt$/, '');
f1de811f 165
fb6dc875
PC
166 if (i.extra[0] < 0) {
167 cancel_autocomplete(this.field, nameRealField);
168 return;
169 }
170
1bdd08a7 171 $(".autocompleteTarget[name='"+nameRealField+"']").attr('value',i.extra[1]);
f1de811f 172
1bdd08a7 173 $(".autocomplete[name='"+this.field+"']").addClass('hidden_valid');
f06a6d2b
OLF
174 }
175 }
f1de811f 176
f06a6d2b
OLF
177 $(document).ready(function() {
178 $(".autocompleteTarget").hide();
179 $(".autocomplete").show().each(function() {
180 targeted = $("../.autocompleteTarget",this)[0];
f1de811f 181
f06a6d2b
OLF
182 if (targeted && targeted.value) {
183 me = $(this);
f1de811f 184
f06a6d2b
OLF
185 $.get(baseurl + 'list/'+ targeted.name +'/'+targeted.value, {},function(textValue) {
186 me.attr('value', textValue);
187 me.addClass('hidden_valid');
188 });
189 }
f1de811f 190
f06a6d2b
OLF
191 $(this).autocomplete(baseurl + "autocomplete/"+this.name,{
192 selectOnly:1,
193 formatItem:make_format_autocomplete(this),
194 field:this.name,
195 onItemSelect:select_autocomplete(this.name),
196 matchSubset:0,
197 width:$(this).width()});
198 });
f1de811f 199
f06a6d2b 200 $(".autocomplete").change(function() { $(this).removeClass('hidden_valid'); });
f1de811f 201
1bdd08a7 202 $(".autocomplete[name='countryTxt']").change(function() { changeCountry(''); });
f1de811f 203
f06a6d2b 204 changeCountry({/literal}'{$smarty.request.country}'{literal});
86ab1c8f 205 changeAdministrativeArea({/literal}'{$smarty.request.administrativearea}'{literal});
f1de811f 206
1bdd08a7 207 $(".autocomplete[name='schoolTxt']").change(function() { changeSchool(''); });
f1de811f 208
f06a6d2b 209 changeSchool({/literal}'{$smarty.request.school}'{literal});
f1de811f 210
f06a6d2b
OLF
211 $(".autocompleteToSelect").each(function() {
212 var fieldName = $(this).attr('href');
f1de811f 213
f06a6d2b 214 $(this).attr('href', baseurl + 'list/'+fieldName).click(function() {
1bdd08a7 215 var oldval = $("input.autocompleteTarget[name='"+fieldName+"']")[0].value;
f1de811f 216
1bdd08a7 217 $(".autocompleteTarget[name='"+fieldName+"']").parent().load(baseurl + 'list/'+fieldName,{},
f06a6d2b 218 function(selectBox) {
1bdd08a7
SJ
219 $(".autocompleteTarget[name='"+fieldName+"']").remove();
220 $(".autocomplete[name='"+fieldName+"Txt']").remove();
221 $("select[name='"+fieldName+"']").attr('value', oldval);
66f2b6b3 222 });
f1de811f 223
f06a6d2b 224 return false;
66f2b6b3 225 });
7d7b287c
OLF
226 }).parent().find('.autocomplete').change(function() {
227 // If we change the value in the type="text" field, then the value in the 'integer id' field must not be used,
228 // to ensure that, we unset it
229 $(this).parent().find('.autocompleteTarget').val('');
f06a6d2b
OLF
230 });
231 });
21fb012b 232/** Regexps to wipe out from search queries */
1d364832 233var default_form_values = [ /&woman=0(&|$)/, /&subscriber=0(&|$)/, /&alive=0(&|$)/, /&egal[12]=[^&]*&promo[12]=(&|$)/g, /&networking_type=0(&|$)/, /&[^&=]+=(&|$)/g ];
21fb012b
PC
234/** Uses javascript to clean form from all empty fields */
235function cleanForm(f) {
236 var query = $(f).formSerialize();
237 var old_query;
e533246c
RB
238 for (var i in default_form_values) {
239 var reg = default_form_values[i];
240 if (typeof(reg) != "undefined") {
241 do {
242 old_query = query;
243 query = query.replace(reg, '$1');
244 } while (old_query != query);
245 }
21fb012b
PC
246 }
247 query = query.replace(/^&*(.*)&*$/, '$1');
fb6dc875 248 if (query == "rechercher=Chercher") {
21fb012b
PC
249 alert("Aucun critère n'a été spécifié");
250 return false;
251 }
106b0788 252 document.location = baseurl + 'adv?' + query;
21fb012b
PC
253 return false;
254}
f06a6d2b 255-->
a94040d2 256{/literal}</script>
ba50f03d 257<p class="center">[<a href="search">Revenir à la recherche simple</a>]</p>
21fb012b 258<form id="recherche" action="search/adv" method="get" onsubmit="return cleanForm(this)">
0337d704 259 <table class="bicol" cellpadding="3" summary="Recherche">
260 <tr>
1f17ab93 261 <th colspan="2">
ba50f03d 262 Recherche avancée
1f17ab93 263 </th>
264 </tr>
265 <tr>
6443c93d 266 <td>Nom, prénom, surnom...</td>
0337d704 267 <td>
66f2b6b3 268 <input type="hidden" name="rechercher" value="Chercher"/>
269 <input type="submit" style="display:none"/>
6443c93d 270 <input type="text" name="name" size="32" value="{$smarty.request.name}" />
0337d704 271 </td>
272 </tr>
273 <tr>
274 <td>Promotion</td>
275 <td>
89ee88f2
PC
276 <script type="text/javascript">/*<![CDATA[*/
277 {literal}
278 function updatepromofields(egal1) {
279 var f = egal1.form;
280 f.egal2.disabled = f.promo2.disabled = egal1.value == '=';
281 f.egal2.readOnly = true;
282 if (f.egal1.value == '>=') {
283 f.egal2.value = '<=';
284 } else {
285 f.egal2.value = '>=';
286 }
287 }
288 $(document).ready(function() { updatepromofields($('select[name=egal1]')[0]); });
289 {/literal}
290 /*]]>*/</script>
291 <select name="egal1" onchange="updatepromofields(this)" style="text-align:center">
0337d704 292 <option value="=" {if $smarty.request.egal1 eq "="}selected="selected"{/if}>&nbsp;=&nbsp;</option>
293 <option value="&gt;=" {if $smarty.request.egal1 eq "&gt;="}selected="selected"{/if}>&nbsp;&gt;=&nbsp;</option>
294 <option value="&lt;=" {if $smarty.request.egal1 eq "&lt;="}selected="selected"{/if}>&nbsp;&lt;=&nbsp;</option>
295 </select>
296 <input type="text" name="promo1" size="4" maxlength="4" value="{$smarty.request.promo1}" />
e803ded5 297 &nbsp;et&nbsp;
89ee88f2 298 <input type="text" name="egal2" size="1" style="text-align:center" value="{if t($smarty.request.egal2) eq '&lt;'}&lt;{else}&gt;{/if}" readonly="readonly" />
0337d704 299 <input type="text" name="promo2" size="4" maxlength="4" value="{$smarty.request.promo2}" />
300 </td>
301 </tr>
302 <tr>
303 <td>Sexe</td>
304 <td>
305 <table>
306 <tr>
307 <td style="width:100px">
e803ded5 308 <input type="radio" name="woman" value="0" {if !$smarty.request.woman}checked="checked"{/if} id="woman0"/><label for="woman0">indifférent</label>
0337d704 309 </td>
310 <td style="width:100px">
e803ded5 311 <input type="radio" name="woman" value="1" {if $smarty.request.woman eq 1}checked="checked"{/if} id="woman1"/><label for="woman1">homme</label>
0337d704 312 </td>
313 <td style="width:100px">
e803ded5 314 <input type="radio" name="woman" value="2" {if $smarty.request.woman eq 2}checked="checked"{/if} id="woman2"/><label for="woman2">femme</label>
0337d704 315 </td>
316 </tr>
317 </table>
318 </td>
319 </tr>
320 <tr>
e803ded5 321 <td>Sur Polytechnique.org</td>
0337d704 322 <td>
323 <table>
324 <tr>
325 <td style="width:100px">
e803ded5 326 <input type="radio" name="subscriber" value="0" {if !$smarty.request.subscriber}checked="checked"{/if} id="subscriber0"/><label for="subscriber0">indifférent</label>
0337d704 327 </td>
328 <td style="width:100px">
e803ded5 329 <input type="radio" name="subscriber" value="1" {if $smarty.request.subscriber eq 1}checked="checked"{/if} id="subscriber1"/><label for="subscriber1">inscrit</label>
0337d704 330 </td>
331 <td style="width:100px">
e803ded5 332 <input type="radio" name="subscriber" value="2" {if $smarty.request.subscriber eq 2}checked="checked"{/if} id="subscriber2"/><label for="subscriber2">non inscrit</label>
0337d704 333 </td>
334 </tr>
335 </table>
336 </td>
337 </tr>
338 <tr>
339 <td>En vie</td>
340 <td>
341 <table>
342 <tr>
343 <td style="width:100px">
e803ded5 344 <input type="radio" name="alive" value="0" {if !$smarty.request.alive}checked="checked"{/if} id="alive0"/><label for="alive0">indifférent</label>
0337d704 345 </td>
346 <td style="width:100px">
e803ded5 347 <input type="radio" name="alive" value="1" {if $smarty.request.alive eq 1}checked="checked"{/if} id="alive1"/><label for="alive1">vivant</label>
0337d704 348 </td>
349 <td style="width:100px">
e803ded5 350 <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>
0337d704 351 </td>
352 </tr>
353 </table>
354 </td>
355 </tr>
356 <tr>
56670b6a 357 <td colspan="2">
b16476f7 358 <input type="checkbox" name="with_soundex" value="1" {if $smarty.request.with_soundex}checked="checked"{/if} id="sdxn" />
e803ded5 359 <label for="sdxn">Étendre par proximité sonore (uniquement sur nom et prénom).</label>
b16476f7 360 </td>
20ac3913 361 </tr>
b16476f7 362 <tr>
363 <th colspan="2">Géographie</th>
56670b6a 364 </tr>
365 <tr>
91610ef5 366 <td>Ville ou code postal</td>
df87518a 367 <td><input type="text" class="autocomplete" name="city" size="32" value="{$smarty.request.city}" /></td>
0337d704 368 </tr>
369 <tr>
370 <td>Pays</td>
371 <td>
b0691e10
FB
372 <input name="countryTxt" type="text" class="autocomplete" style="display:none" size="32"
373 value="{$smarty.request.countryTxt}"/>
66f2b6b3 374 <input name="country" class="autocompleteTarget" type="hidden" value="{$smarty.request.country}"/>
375 <a href="country" class="autocompleteToSelect">{icon name="table" title="Tous les pays"}</a>
0337d704 376 </td>
377 </tr>
86ab1c8f
SJ
378 <tr id="administrativearea_list">
379 <td>Région, province, état&hellip;</td>
380 <td>
381 <input name="administrativearea" type="hidden" size="32" value="{$smarty.request.administrativearea}" />
382 </td>
383 </tr>
384 <tr id="subadministrativearea_list">
385 <td>Département, comté&hellip;</td>
f6818108 386 <td>
86ab1c8f 387 <input name="subadministrativearea" type="hidden" size="32" value="{$smarty.request.subadministrativearea}" />
0337d704 388 </td>
389 </tr>
390 <tr>
b16476f7 391 <td colspan="2">
aab2ffdd
SJ
392 <label for="only_current">
393 <input name="only_current" id="only_current" type="checkbox"{if $smarty.request.only_current} checked="checked"{/if}/>
394 Chercher uniquement les adresses où les camarades sont actuellement.
395 </label>
396 </td>
b16476f7 397 </tr>
398 <tr>
a7de4ef7 399 <th colspan="2">Activité</th>
0337d704 400 </tr>
401 <tr>
402 <td>Entreprise</td>
838cc16a 403 <td><input type="text" class="autocomplete" name="entreprise" size="32" value="{$smarty.request.entreprise}" /></td>
0337d704 404 </tr>
405 <tr>
c7139c07
SJ
406 <td>Description</td>
407 <td><input type="text" class="autocomplete" name="description" size="32" value="{$smarty.request.description}" /></td>
0337d704 408 </tr>
409 <tr>
3ac45f10 410 <td>Mots-clefs</td>
0337d704 411 <td>
3ac45f10
PC
412 <input name="jobtermTxt" type="text" class="autocomplete{if $smarty.request.jobterm} hidden_valid{/if}" style="display:none" size="32"
413 value="{$smarty.request.jobtermTxt}"/>
414 <input name="jobterm" class="autocompleteTarget" type="hidden" value="{$smarty.request.jobterm}"/>
415 <a href="jobterm" class="autocompleteToSelect">{icon name="table" title="Tous les mots-clefs"}</a>
0337d704 416 </td>
417 </tr>
574f3cc3 418 {if hasPerm('directory_private')}
0337d704 419 <tr>
420 <td>CV contient</td>
421 <td><input type="text" name="cv" size="32" value="{$smarty.request.cv}" /></td>
422 </tr>
574f3cc3 423 {/if}
0337d704 424 <tr>
425 <td colspan="2">
f6818108 426 <input type='checkbox' name='only_referent' {if $smarty.request.only_referent}checked='checked'{/if} id="only_referent"/>
e803ded5 427 <label for="only_referent">Chercher uniquement parmi les camarades se proposant comme référents.</label>
0337d704 428 </td>
429 </tr>
430 <tr>
431 <th colspan="2">Divers</th>
432 </tr>
433 <tr>
a7de4ef7 434 <td>Nationalité</td>
0337d704 435 <td>
b0691e10
FB
436 <input name="nationaliteTxt" type="text" class="autocomplete" style="display:none" size="32"
437 value="{$smarty.request.nationaliteTxt}"/>
66f2b6b3 438 <input name="nationalite" class="autocompleteTarget" type="hidden" value="{$smarty.request.nationalite}"/>
439 <a href="nationalite" class="autocompleteToSelect">{icon name="table" title="Toutes les nationalités"}</a>
0337d704 440 </td>
441 </tr>
574f3cc3 442 {if hasPerm('directory_private')}
0337d704 443 <tr>
444 <td>Binet</td>
445 <td>
b0691e10
FB
446 <input name="binetTxt" type="text" class="autocomplete" style="display:none" size="32"
447 value="{$smarty.request.binetTxt}"/>
66f2b6b3 448 <input name="binet" class="autocompleteTarget" type="hidden" value="{$smarty.request.binet}"/>
449 <a href="binet" class="autocompleteToSelect">{icon name="table" title="Tous les binets"}</a>
0337d704 450 </td>
451 </tr>
574f3cc3 452 {/if}
0337d704 453 <tr>
454 <td>Groupe X</td>
455 <td>
b0691e10
FB
456 <input name="groupexTxt" type="text" class="autocomplete" style="display:none" size="32"
457 value="{$smarty.request.groupexTxt}"/>
66f2b6b3 458 <input name="groupex" class="autocompleteTarget" type="hidden" value="{$smarty.request.groupex}"/>
459 <a href="groupex" class="autocompleteToSelect">{icon name="table" title="Tous les groupes X"}</a>
0337d704 460 </td>
461 </tr>
574f3cc3 462 {if hasPerm('directory_private')}
0337d704 463 <tr>
464 <td>Section</td>
465 <td>
b0691e10
FB
466 <input name="sectionTxt" type="text" class="autocomplete" style="display:none" size="32"
467 value="{$smarty.request.sectionTxt}"/>
66f2b6b3 468 <input name="section" class="autocompleteTarget" type="hidden" value="{$smarty.request.section}"/>
469 <a href="section" class="autocompleteToSelect">{icon name="table" title="Toutes les sections"}</a>
0337d704 470 </td>
471 </tr>
574f3cc3 472 {/if}
0337d704 473 <tr>
474 <td>Formation</td>
475 <td>
b0691e10
FB
476 <input name="schoolTxt" type="text" class="autocomplete" style="display:none" size="32"
477 value="{$smarty.request.schoolTxt}"/>
66f2b6b3 478 <input name="school" class="autocompleteTarget" type="hidden" value="{$smarty.request.school}"/>
479 <a href="school" class="autocompleteToSelect">{icon name="table" title="Toutes les formations"}</a>
0337d704 480 </td>
481 </tr>
90b6b819 482 <tr>
f6818108 483 <td>Diplôme</td>
484 <td>
90b6b819 485 <input name="diploma" size="32" value="{$smarty.request.diploma}"/>
0337d704 486 </td>
487 </tr>
488 <tr>
489 <td>Commentaire contient</td>
490 <td><input type="text" name="free" size="32" value="{$smarty.request.free}" /></td>
491 </tr>
14256b08 492 <tr>
93f3f260
GB
493 <td>Numéro de téléphone</td>
494 <td><input type="text" name="phone_number" size="32" value="{$smarty.request.phone_number}"/></td>
495 </tr>
496 <tr>
92c3f9e5
GB
497 <td style="vertical-align: middle">
498 <span>Networking et sites webs</span>
14256b08
GB
499 </td>
500 <td>
92c3f9e5
GB
501 <table>
502 <tr>
503 <td style="padding-left: 0px;">
504 <input type="text" name="networking_address" size="32" value="{$smarty.request.networking_address}" />
505 </td>
506 <td>
1d364832
RB
507 <select name="networking_type">
508 {foreach from=$networking_types key=id item=network}
509 <option value="{$id}" {if $smarty.request.networking_type eq $id}selected="selected"{/if}>{$network}</option>
510 {/foreach}
511 </select>
92c3f9e5
GB
512 </td>
513 </tr>
514 </table>
14256b08
GB
515 </td>
516 </tr>
0f567f55
RB
517 {if hasPerm('admin,edit_directory')}
518 <tr>
519 <td>Matricule AX</td>
520 <td>
521 <textarea name="schoolid_ax" rows="10" cols="12">{$smarty.request.schoolid_ax}</textarea>
522 <br />
523 <i>Entrer une liste de matricules AX (un par ligne)</i>
524 </td>
525 {/if}
1f17ab93 526 {if $smarty.session.auth ge AUTH_COOKIE}
e803ded5
SJ
527 <tr>
528 <td colspan="2">
f6818108 529 <input type='checkbox' name='order' value='date_mod' {if $smarty.request.order eq "date_mod"}checked='checked'{/if} id="order"/>
e803ded5
SJ
530 <label for="order">Mettre les fiches modifiées récemment en premier.</label>
531 </td>
532 </tr>
b8c2ada6
SJ
533 <tr>
534 <td colspan="2">
535 <input type='checkbox' name='exact' id="exact" {if $smarty.request.exact}checked='checked'{/if} value='1'/>
536 <label for="exact">Faire une recherche exacte.</label>
537 </td>
538 </tr>
1f17ab93 539 {/if}
e803ded5
SJ
540 <tr><td colspan="2"></td></tr>
541 <tr>
542 <td colspan="2" style="text-align: center">
543 <input type="submit" value="Chercher" />
1f17ab93 544 </td>
545 </tr>
0337d704 546 </table>
cb4a0b71 547</form>
0337d704 548
a7de4ef7 549{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}