Convert source code to UTF-8
[platal.git] / templates / profile / fiche_referent.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5ddeb07c 3{* Copyright (C) 2003-2007 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
23{literal}
7b2413f6 24<script type="text/javascript" src="javascript/close_on_esc.js">
0337d704 25</script>
26{/literal}
27
28<div id="fiche">
29
30 <div class="center">
31 <strong>{$prenom} {$nom}</strong><br />
7d73bb7b 32 <span>X{$promo}&nbsp;-&nbsp;</span> <a href="mailto:{$bestalias}@{#globals.mail.domain#}">{$bestalias}@{#globals.mail.domain#}</a>
0337d704 33 </div>
34
35 {if $expertise != '' || $secteurs|count || $pays|count }
36
a7de4ef7 37 <h2>Informations de référent :</h2>
0337d704 38
39 <div id="fiche_referent">
40 {if $expertise}
41 <div class="rubrique_referent">
42 <em>Expertise : </em><br />
43 <span>{$expertise|nl2br}</span>
44 </div>
45 {/if}
46 {if $secteurs|count}
47 <div class="rubrique_referent">
48 <em>Secteurs :</em><br />
49 <ul>
50 {foreach from=$secteurs item="secteur" key="i"}
51 <li>{$secteur}{if $ss_secteurs.$i != ''} ({$ss_secteurs.$i}){/if}</li>
52 {/foreach}
53 </ul>
54 </div>
55 {/if}
56 {if $pays|count}
57 <div class="rubrique_referent">
58 <em>Pays :</em>
59 <ul>
60 {foreach from=$pays item="pays_i"}
61 <li>{$pays_i}</li>
62 {/foreach}
63 </ul>
64 </div>
65 {/if}
66 <div class="spacer">&nbsp;</div>
67 </div>
68 {/if}
69
70 {foreach from=$adr_pro item="address" key="i"}
71 <h2>{$address.entreprise}</h2>
72 {include file="include/emploi.tpl" address=$address}
73 {include file="geoloc/address.tpl" address=$address titre="Adresse : "}
74
75 <div class="spacer">&nbsp;</div>
76 {/foreach}
77
78 {if $cv}
79 <h2>Curriculum Vitae : </h2>
80 <div>{$cv|nl2br}</div>
81 {/if}
82
83
84
85</div>
a7de4ef7 86{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}