69022ffa625618427f155b4449d93bb8e1231ef9
[platal.git] / templates / profile / jobs.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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 {foreach from=$entreprises item=job key=i}
25 <div id="{"job_`$i`_cont"}">
26 {include file="profile/jobs.job.tpl" i=$i job=$job}
27 </div>
28 {/foreach}
29 {if $jobs|@count eq 0}
30 <div id="job_0_cont">
31 {include file="profile/jobs.job.tpl" i=0 job=0}
32 </div>
33 {/if}
34
35 <div id="add_job" class="center">
36   <a href="javascript:addJob()">
37     {icon name=add title="Ajouter un emploi"} Ajouter un emploi
38   </a>
39 </div>
40
41 <table class="bicol" summary="CV">
42   <tr>
43     <th>
44       Informations professionnelles - CV
45     </th>
46   </tr>
47   <tr>
48     <td>
49       <div style="float: left; width: 25%">
50         <div class="titre">Curriculum vitae&nbsp;:</div>
51         <div class="flags">
52           <span class="rouge"><input type="checkbox" name="accesCV" checked="checked" disabled="disabled" /></span>
53           <span class="texte">privé</span>
54         </div>
55         <div class="smaller" style="margin-top: 30px">
56           <a href="Xorg/FAQ?display=light#cv" class="popup_800x480">
57             {icon name="lightbulb" title="Astuce"}Comment remplir mon CV&nbsp;?
58           </a><br />
59           <a href="wiki_help" class="popup3">
60             {icon name=information title="Syntaxe wiki"} Voir la syntaxe wiki
61           </a>
62           <div class="center">
63             <input type="submit" name="preview" value="Aperçu du CV"
64                    onclick="previewWiki('cv',  'cv_preview', true, 'cv_preview'); return false;" />
65           </div>
66         </div>
67       </div>
68       <div style="float: right">
69         <div id="cv_preview" style="display: none"></div>
70         <textarea name="cv" id="cv" rows="15" cols="55">{$cv}</textarea>
71       </div>
72     </td>
73   </tr>
74 </table>
75
76 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}