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