Merge branch 'xorg/maint'
[platal.git] / templates / xnetgrp / membres-new-search.tpl
CommitLineData
71a72fe8 1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 Polytechnique.org *}
71a72fe8 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
8773c4c2
SJ
23{if t($too_many)}
24Les critères de recherche ne sont pas assez précis.
25{elseif !t($users) || $users|@count eq 0}
26Aucun camarade non-inscrit ne correspond aux informations fournies.
27{else}
28Camarades correspondants :
29<select name="userid" onchange="updateSuggestions('{$platal->ns}', this.value)">
85422218 30 <option value="0" {if $users|@count neq 1}selected="selected"{/if}>Sélectionne le camarade correspondant</option>
8773c4c2
SJ
31 {foreach item=user from=$users}
32 <option value="{$user->id()}" {if $users|@count == 1}selected="selected"{/if}>{profile user=$user link=false promo=true}</option>
33 {/foreach}
34</select>
35{if !$same_email}
36<span id="marketing" style="display: none"><br />
37 <label>
38 <input type="checkbox" name="marketing" onchange="$('#marketing_from').toggle()" />
39 Lui envoyer un marketing
40 </label>
41 <select name="marketing_from" id="marketing_from">
42 <option value="user" selected="selected">de ta part.</option>
43 <option value="staff">de la part de Polytechnique.org.</option>
71a72fe8 44 </select>
8773c4c2
SJ
45</span>
46<span id="broken" style="display: none"><br />
47 Ce camarade est inscrit, mais l'email fourni ne fait pas partie de ses adresses de redirection.<br />
48 <label>
49 <input type="checkbox" name="broken" />
50 Lui suggérer d'ajouter cette adresse email à ses redirections.
51 </label>
52</span>
53{/if}
54{/if}
71a72fe8 55
448c8cdc 56{* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}