Implement hidden permission in profile editor
[platal.git] / templates / profile / general.hobby.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2014 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 {if $isMe || hasPerm('admin') || empty($hobby.text|smarty:nodefaults)}
24   {assign var=hiddenhobby value=false}
25 {elseif hasPerm('directory_hidden') || (($hobby.pub neq 'hidden') && ($hobby.pub neq 'private'))}
26   {assign var=hiddenhobby value=false}
27 {elseif hasPerm('directory_private') && ($hobby.pub neq 'hidden')}
28   {assign var=hiddenhobby value=false}
29 {else}
30   {assign var=hiddenhobby value=true}
31 {/if}
32
33 <tr id="hobby_{$i}">
34   <td colspan="2">
35     <div style="float: left; width: 200px;">
36       <span class="flags">
37         <label>
38           <input type="checkbox" {if $hobby.pub neq 'private'}checked="checked"{/if}
39                  {if $hiddenhobby} disabled="disabled"{/if} name="hobbies[{$i}][pub]" />
40         {icon name="flag_green" title="site public"}
41       </label>
42       </span>&nbsp;
43       <input type="hidden" name="hobbies[{$i}][type]" value="{$hobby.type}" />
44       <span>{$hobby.type}</span>
45     </div>
46     <div style="float: left">
47       {if $hiddenhobby}
48       <input type="hidden" name="hobbies[{$i}][text]" value="{$hobby.text}" />
49       (masqué)
50       {else}
51       <input type="text" name="hobbies[{$i}][text]" value="{$hobby.text}" size="30" />
52       {/if}
53       <a href="javascript:removeHobby({$i})">
54         {icon name=cross title="Supprimer cet élément"}
55       </a>
56     </div>
57   </td>
58 </tr>
59
60 {* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}