Merge branch 'xorg/1.0.2/master' into xorg/master
[platal.git] / templates / profile / fiche_referent.tpl
... / ...
CommitLineData
1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2010 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{assign var=terms value=$profile->getMentoringTerms()}
24{assign var=countries value=$profile->getMentoringCountries()}
25<div id="fiche">
26<div id="fiche_referent">
27 <div id="fiche_identite">
28 <div class="civilite">
29 <strong>{$profile->fullName()}</strong><br />
30 <span>{$profile->promo()}&nbsp;-&nbsp;</span> <a href="mailto:{$profile->displayEmail()}">{$profile->displayEmail()}</a>
31 </div>
32 </div>
33 <div class="spacer"></div>
34
35 {if $profile->expertise != '' || $terms|count || $countries|count }
36 <div id="part">
37 <h2>Informations de référent&nbsp;:</h2>
38 {if $profile->expertise}
39 <div class="rubrique_referent">
40 <em>Expertise&nbsp;: </em><br />
41 <span>{$profile->expertise|nl2br}</span>
42 </div>
43 {/if}
44 {if $terms|count}
45 <div class="rubrique_referent">
46 <em>Mots-clefs&nbsp;:</em><br />
47 <ul>
48 {foreach from=$terms item="term"}
49 <li>{$term->full_name}</li>
50 {/foreach}
51 </ul>
52 </div>
53 {/if}
54 {if $countries|count}
55 <div class="rubrique_referent">
56 <em>Pays&nbsp;:</em>
57 <ul>
58 {foreach from=$pays item="pays_i"}
59 <li>{$pays_i}</li>
60 {/foreach}
61 </ul>
62 </div>
63 {/if}
64 <div class="spacer">&nbsp;</div>
65 </div>
66 {/if}
67
68 {assign var=jobs value=$profile->getJobs(2)}
69 <div class="part">
70 {foreach from=$jobs item="job"}
71 <h2>{$job->company->name}</h2>
72 {include file="include/emploi.tpl" job=$job}
73 {if $job->address}
74 {include file="geoloc/address.tpl" address=$job->address titre="Adresse&nbsp;: " for=$job->company->name phones=$job->phones pos="left"}
75 {elseif $job->phones}
76 {display_phones tels=$job->phones}
77 {/if}
78 <div class="spacer">&nbsp;</div>
79 {/foreach}
80 </div>
81
82 {if $profile->cv}
83 <div class="part">
84 <h2>Curriculum Vitae&nbsp;: </h2>
85 <div style="padding: 0 2ex">{$profile->cv|miniwiki:title|smarty:nodefaults}</div>
86 </div>
87 {/if}
88
89
90 <div class="spacer"></div>
91</div>
92</div>
93{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}