Merge branch 'xorg/maint'
[platal.git] / templates / profile / profile.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 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}
4d8e2051 24<script type="text/javascript">//<![CDATA[
555fde86 25function chgMainWinLoc(strPage)
26{
63c89179 27 strPage = $.plURL(strPage);
2c326273 28 if (parent.opener) {
007c44cb 29 try {
30 parent.opener.document.location = strPage;
31 window.close();
32 } catch(e) {
33 window.open(strPage);
34 }
2c326273 35 } else {
36 document.location = strPage;
37 }
0337d704 38}
0c9edc89
FB
39
40$($.closeOnEsc);
41
4d8e2051 42//]]></script>
0337d704 43{/literal}
03a6316f 44<div id="fiche">
45 <div id="photo" class="part">
68f988a8 46 {assign var=photo value=$profile->getPhoto(false)}
7e019d24 47 {if $photo}<img alt="Photo de {$profile->fullName()}" src="photo/{$profile->hrid()}{if $with_pending_pic}/req{/if}" width="{$photo->width()}"/>{/if}
5f8ad70d 48
22771578 49 {if $logged && $view->isVisible(#Visibility::EXPORT_AX#) && ( $profile->section|smarty:nodefaults || $profile->getBinets()|smarty:nodefaults || ($owner && $owner->groups(true,true)|smarty:nodefaults))}
6e828e47 50 <h2>À l'X&hellip;</h2>
68f988a8 51 {if $profile->section}<div><em class="intitule">Section&nbsp;: </em><span>{$profile->section}</span></div>{/if}
5f8ad70d 52
7f3c6bf4 53 {assign var=binets value=$profile->getFullBinets()}
5f8ad70d 54 {if $binets|@count}<div><em class="intitule">Binet{if count($binets) > 1}s{/if}&nbsp;: </em>
7f3c6bf4
TM
55 <span> <br />
56 {foreach from=$binets item=binet name=binets}
57 {if !$smarty.foreach.binets.first}, {/if}
58 <span title="{$binet.text}">{if $binet.url}<a href="{$binet.url}">{/if}{$binet.text}{if $binet.url}</a>{/if}</span>
59 {/foreach}
60 </span></div>{/if}
5f8ad70d 61
22771578 62 {if $owner && $view->isVisible(#Visibility::EXPORT_AX#)}
56cd7aee 63 {assign var=groups value=$owner->groups(true,true)}
5f8ad70d
RB
64 {if $groups|@count}<div><em class="intitule">Groupe{if count($groups) > 1}s{/if} et institution{if count($groups) > 1}s{/if} X&nbsp;: </em>
65 <span><br/>
c3a9fa2b
SJ
66 {foreach from=$groups item=group name=groups}
67 {if !$smarty.foreach.groups.first}, {/if}
d20d775c 68 <span title="{$group.nom}"><a href="{if $group.site}{$group.site}{else}http://www.polytechnique.net/{$group.diminutif}{/if}">{$group.nom}</a></span>
c3a9fa2b 69 {/foreach}
5f8ad70d
RB
70 </span></div>{/if}
71 {/if}
72
03a6316f 73 {/if}
5f8ad70d 74
79270914 75 {assign var=networking value=$profile->getNetworking(#Profile::NETWORKING_ALL#)}
5f8ad70d 76 {if count($networking) > 0}
92c3f9e5 77 <h2>Sur le web...</h2>
5f8ad70d 78 {foreach from=$networking item=network}
1f5cd004
PC
79 <img style="width: auto; padding: 0" src="profile/networking/{$network.nwid}" alt="{$network.name}" title="{$network.name}"/>
80 {if $network.link}
81 <a href="{$network.link|replace:'%s':$network.address}">{$network.address}</a>
d1a2252a
GB
82 {else}
83 {$network.address}
84 {/if}
85 <br/>
86 {/foreach}
87 {/if}
5f8ad70d 88
c96e6bd0
VB
89 {assign var=hobbies value=$profile->getHobbies()}
90 {if count($hobbies) > 0}
91 <h2>Hobbies...</h2>
92 {foreach from=$hobbies key=type item=text}
93 <div><em class="intitule">{$type} : </em>{$text}</div>
94 {/foreach}
95 {/if}
96
68f988a8 97 {if $profile->freetext}
5f8ad70d 98 <h2>Commentaires&nbsp;:</h2>
68f988a8 99 <span>{$profile->freetext|miniwiki|smarty:nodefaults}</span>
581c3341 100 {/if}
5f8ad70d 101
03a6316f 102 </div>
5f8ad70d 103
03a6316f 104 <div id="fiche_identite" class="part">
105 <div class="civilite">
68f988a8 106 {if $profile->isFemale()}&bull;{/if}
94e3a8e9
TM
107 {if $view->isVisible(#Visibility::EXPORT_PRIVATE#)}{$profile->private_name}{else}{$profile->public_name}{/if}
108 {if hasPerm('admin') || $smarty.session.user->canEdit($profile)} {$profile->ax_id}{/if}
5f8ad70d 109
581c3341 110 {if $logged}
68f988a8 111 &nbsp;{if !$profile->isDead()}<a href="vcard/{$owner->login()}.vcf">{*
5f8ad70d
RB
112 *}{icon name=vcard title="Afficher la carte de visite"}</a>{/if}
113
2ab391bc 114 {if !$smarty.session.user->isContact($profile)}
68f988a8 115 <a href="javascript:chgMainWinLoc('carnet/contacts?action=ajouter&amp;user={$owner->login()}&amp;token={xsrf_token}')">
5f8ad70d
RB
116 {icon name=add title="Ajouter à mes contacts"}</a>
117 {else}
68f988a8 118 <a href="javascript:chgMainWinLoc('carnet/contacts?action=retirer&amp;user={$owner->login()}&amp;token={xsrf_token}')">
5f8ad70d
RB
119 {icon name=cross title="Retirer de mes contacts"}</a>
120 {/if}
121
122 {if hasPerm('admin')}
68f988a8 123 <a href="javascript:chgMainWinLoc('admin/user/{$owner->login()}')">
5f8ad70d
RB
124 {icon name=wrench title="administrer user"}</a>
125 {/if}
126
6fbc3476 127 {if $smarty.session.user->isMyProfile($profile)}
5f8ad70d 128 <a href="javascript:chgMainWinLoc('profile/edit')">{icon name="user_edit" title="Modifier ma fiche"}</a>
6fbc3476
FB
129 {elseif hasPerm('admin') || $smarty.session.user->canEdit($profile)}
130 <a href="javascript:chgMainWinLoc('profile/edit/{$profile->hrpid}')">
131 {icon name=user_edit title="modifier la fiche"}
132 </a>
5f8ad70d 133 {/if}
03a6316f 134 {/if}
135 </div>
5f8ad70d 136
22771578 137 {if $logged && $view->isVisible(#Visibility::EXPORT_AX#) && $owner && $owner->state eq 'active'}
03a6316f 138 <div class='maj'>
139 Fiche mise à jour<br />
68f988a8 140 le {$profile->last_change|date_format}
03a6316f 141 </div>
142 {/if}
5f8ad70d 143
3c985c08
RB
144 {* 121634816 is Profile::PHONE_LINK_PROFILE | Profile::PHONE_TYPE_ANY = 0x7400000 *}
145 {assign var=phones value=$profile->getPhones(121634816)}
22771578 146 {if ($logged && $view->isVisible(#Visibility::EXPORT_AX#)) || count($phones) > 0}
03a6316f 147 <div class="contact">
22771578 148 {if $logged && $view->isVisible(#Visibility::EXPORT_AX#)}
03a6316f 149 <div class='email'>
68f988a8
RB
150 {if $profile->isDead()}
151 Décédé{if $profile->isFemale()}e{/if} le {$profile->deathdate|date_format}
5f96fea9 152 {elseif $owner && $owner->lost}
68f988a8
RB
153 Ce{if $profile->isFemale()}tte{/if} camarade n'a plus d'adresse de redirection valide,<br />
154 <a href="marketing/broken/{$owner->login()}" class="popup">clique ici si tu connais son adresse email&nbsp;!</a>
5f96fea9 155 {elseif $owner && $owner->state != 'active'}
03a6316f 156 Cette personne n'est pas inscrite à Polytechnique.org,<br />
68f988a8 157 <a href="marketing/public/{$owner->login()}" class="popup">clique ici si tu connais son adresse email&nbsp;!</a>
0337d704 158 {else}
a9d13889 159 {if $virtualalias && $view->isVisible(#Visibility::EXPORT_PRIVATE#) && $virtualalias neq $owner->bestEmail()}
03a6316f 160 <a href="mailto:{$virtualalias}">{$virtualalias}</a><br />
0337d704 161 {/if}
68f988a8
RB
162 <a href="mailto:{$owner->bestEmail()}">{$owner->bestEmail()}</a>
163 {if $owner->bestEmail() neq $owner->forlifeEmail()}<br />
164 <a href="mailto:{$owner->forlifeEmail()}">{$owner->forlifeEmail()}</a>
c6db254a 165 {/if}
0337d704 166 {/if}
167 </div>
0337d704 168 {/if}
5f8ad70d 169 {if count($phones) > 0}
9533d793 170 <div style="float: right">
68f988a8 171 {display_phones tels=$phones dcd=$profile->isDead()}
9533d793 172 </div>
6261a1b5 173 {/if}
03a6316f 174 <div class='spacer'></div>
175 </div>
eb173bf1
SJ
176 {else}
177 <div class='spacer'></div>
03a6316f 178 {/if}
5f8ad70d 179
03a6316f 180 <div class='formation'>
6420023b
SJ
181 {foreach from=$profile->nationalities() item=country key=code}
182 <img src='images/flags/{$code}.gif' alt='{$code}' height='11' title='{$country}' />&nbsp;
5f8ad70d
RB
183 {/foreach}
184
d718e91c 185 {$profile->promo('details')}
5f8ad70d 186
22771578 187 {if $logged && $view->isVisible(#Visibility::EXPORT_AX#) && $profile->mentor_expertise}
68f988a8 188 [<a href="referent/{$profile->hrid()}" class='popup2'>Ma fiche référent</a>]
03a6316f 189 {/if}
5f8ad70d 190
bdce9ed9 191 {assign var=educations value=$profile->getEducations(32)}
5f8ad70d 192 {if count($educations) > 0}
c7eac294 193 <ul>
5f8ad70d 194 {foreach from=$educations item=edu}
8f3d549b 195 <li>{display_education edu=$edu profile=$profile full=true}</li>
c7eac294
SJ
196 {/foreach}
197 </ul>
03a6316f 198 {/if}
5f8ad70d 199
68f988a8 200 {assign var=corps value=$profile->getCorps()}
5f8ad70d 201 {if $corps && ($corps->current || $corps->original)}
e792fdb8 202 <ul>
5f8ad70d 203 {if $corps->current}
e792fdb8
RB
204 <li>
205 Corps actuel&nbsp;: {$corps->current_name}
206 {if $corps->current_rank}({$corps->current_rank}){/if}
207 </li>
5f8ad70d 208 {/if}
e792fdb8 209 {if $corps->current != $corps->original && $corps->original}
fc6e024d 210 <li>Corps d'origine&nbsp;: {$corps->original_name}</li>
5f8ad70d 211 {/if}
e792fdb8 212 </ul>
078dc884 213 {/if}
5f8ad70d 214
03a6316f 215 </div>
216 </div>
5f8ad70d 217
68f988a8 218 {assign var=addr value=$profile->getAddresses(3)}
5f8ad70d 219 {if count($addr) > 0}
03a6316f 220 <div class="part">
e8439508 221 <h2>Contact&nbsp;: </h2>
68f988a8 222 {if $profile->isDead()}
44c7ed76
SJ
223 {assign var=address_name value="Dernière adresse"}
224 {else}
225 {assign var=address_name value="Adresse"}
226 {/if}
5f8ad70d
RB
227 {foreach from=$addr item="address" name=addresses}
228 {if $smarty.foreach.addresses.iteration is even}
6261a1b5 229 {assign var=pos value="right"}
230 {else}
231 {assign var=pos value="left"}
232 {/if}
5f8ad70d 233 {if $address->hasFlag('current')}
44c7ed76 234 {include file="geoloc/address.tpl" address=$address titre_div=true titre=$address_name|@cat:" actuelle&nbsp;:"
efb74b8f 235 for="`$profile->firstname` `$profile->lastname`" pos=$pos phones=null}
5f8ad70d 236 {elseif $address->hasFlag('secondary')}
44c7ed76 237 {include file="geoloc/address.tpl" address=$address titre_div=true titre=$address_name|@cat:" secondaire&nbsp;:"
efb74b8f 238 for="`$profile->firstname` `$profile->lastname`" pos=$pos phones=null}
03a6316f 239 {else}
44c7ed76 240 {include file="geoloc/address.tpl" address=$address titre_div=true titre=$address_name|@cat:" principale&nbsp;:"
efb74b8f 241 for="`$profile->firstname` `$profile->lastname`" pos=$pos phones=null}
03a6316f 242 {/if}
5f8ad70d 243 {if $smarty.foreach.addresses.iteration is even}<div class="spacer"></div>{/if}
03a6316f 244 {/foreach}
245 </div>
0337d704 246 {/if}
5f8ad70d 247
68f988a8 248 {assign var=jobs value=$profile->getJobs(2)}
5f8ad70d 249 {if count($jobs) > 0}
03a6316f 250 <div class="part">
e8439508 251 <h2>Informations professionnelles&nbsp;:</h2>
5f8ad70d 252 {foreach from=$jobs item="job" key="i"}
16f20f22 253 {if $i neq 0}<hr />{/if}
5f8ad70d 254 {include file="include/emploi.tpl" job=$job}
efb74b8f 255 {assign var=jobPhones value=$job->phones()}
5f8ad70d 256 {if $job->address()}
efb74b8f
SJ
257 {include file="geoloc/address.tpl" address=$job->address() titre="Adresse&nbsp;: " for=$job->company->name pos="left" phones=$jobPhones}
258 {elseif $jobPhones|@count neq 0}
259 {display_phones tels=$jobPhones}
5f8ad70d 260 {/if}
16f20f22 261 <div class="spacer">&nbsp;</div>
03a6316f 262 {/foreach}
263 </div>
0337d704 264 {/if}
5f8ad70d 265
68f988a8 266 {assign var=medals value=$profile->getMedals()}
5f8ad70d
RB
267 {if count($medals) > 0}
268 <div class="part">
269 <h2>Distinctions&nbsp;: </h2>
270 {foreach from=$medals item=m}
271 <div class="medal_frame">
272 <img src="profile/medal/thumb/{$m.mid}" height="50px" alt="{$m.text}" title="{$m.text}" style='float: left;' />
273 <div class="medal_text">
15d26d45 274 {$m.text}{if $m.level} ({$m.level}){/if}<br />{$m.grade}
5f8ad70d 275 </div>
03a6316f 276 </div>
5f8ad70d
RB
277 {/foreach}
278 <div class="spacer">&nbsp;</div>
03a6316f 279 </div>
0337d704 280 {/if}
5f8ad70d 281
68f988a8 282 {if $logged && $profile->cv}
03a6316f 283 <div class="part">
e8439508 284 <h2>Curriculum Vitae&nbsp;:</h2>
68f988a8 285 {$profile->cv|miniwiki:title|smarty:nodefaults}
03a6316f 286 </div>
0337d704 287 {/if}
5f8ad70d 288
22771578 289 {if $view->level() eq #Visibility::VIEW_PUBLIC#}
03a6316f 290 <div class="part">
581c3341 291 <small>
03a6316f 292 Cette fiche est publique et visible par tout internaute,<br />
68f988a8 293 vous pouvez aussi voir <a href="profile/private/{$profile->hrid()}?display=light">celle&nbsp;réservée&nbsp;aux&nbsp;X</a>.
581c3341 294 </small>
03a6316f 295 </div>
22771578 296 {elseif $view->level() eq #Visibility::VIEW_AX#}
24f4c06a
FB
297 <div class="part">
298 <small>
299 Cette fiche est privée et ne recense que les informations transmises à l'AX.
300 </small>
301 </div>
0337d704 302 {/if}
5f8ad70d 303
03a6316f 304 <div class="spacer"></div>
305</div>
0337d704 306
448c8cdc 307{* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}