Merge branch 'platal-0.9.15'
[platal.git] / templates / profile / referent.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2008 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
24 {if $plset_count}
25 {include file="core/plset.tpl"}
26 {else}
27 {include wiki=Docs.Emploi}
28 {/if}
29
30 <p>
31 Actuellement, {$mentors_number} mentors et référents se sont déclarés sur {#globals.core.sitename#}.
32 </p>
33
34 {javascript name=ajax}
35 <script type="text/javascript">//<![CDATA[
36
37 var baseurl = platal_baseurl + "referent/";
38 {literal}
39 var Ajax2 = new AjaxEngine();
40
41 function setSecteur(secteur)
42 {
43     if (secteur == '') {
44         document.getElementById('scat').style.display = 'none';
45         document.getElementById('country').style.display = 'none';
46         document.getElementById('keywords').style.display = 'none';
47     } else {
48         Ajax.update_html('ssect_chg', baseurl + 'ssect/' + secteur);
49         Ajax2.update_html('country_chg', baseurl + 'country/' + secteur);
50         document.getElementById('scat').style.display = ''; 
51         document.getElementById('country').style.display = ''; 
52         document.getElementById('keywords').style.display = ''; 
53     }
54 }
55
56 function setSSecteurs()
57 {
58     var sect  = document.getElementById('sect_field').value;
59     var ssect = document.getElementById('ssect_field').value;
60     Ajax2.update_html('country_chg', baseurl + 'country/' + sect + '/' + ssect);
61 }
62
63 {/literal}
64 //]]></script>
65
66 <form action="{$smarty.server.REQUEST_URI}" method="get">
67   <table cellpadding="0" cellspacing="0" summary="Formulaire de recherche de referents" class="bicol">
68     <tr class="impair">
69       <td class="titre">
70         Secteur de compétence <br /> du référent
71       </td>
72       <td>
73         <select name="secteur" id="sect_field" onchange="setSecteur(this.value)">
74           {html_options options=$secteurs selected=$secteur_sel}
75         </select>
76       </td>
77     </tr>
78     <tr class="impair" style="display: none" id="scat">
79       <td class="titre">
80         Sous-Secteur
81       </td>
82       <td id="ssect_chg">
83       </td>
84     </tr>
85     <tr class="pair" style="display: none" id="country">
86       <td class="titre">
87         Pays bien connu du référent
88       </td>
89       <td id="country_chg">
90       </td>
91     </tr>
92     <tr class="impair" style="display: none" id="keywords">
93       <td class="titre">
94         Expertise (rentre un ou plusieurs mots clés)
95       </td>
96       <td >
97         <input type="text" name="expertise" size="30" value="{$expertise_champ}" />
98       </td>
99     </tr>
100   </table>
101   <div class="center" style="margin-top: 1em;">
102     <input type="submit" value="Chercher" name="Chercher" />
103   </div>
104 </form>
105
106 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}