Merge branch 'master' into fusionax
[platal.git] / templates / include / emails.combobox.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 {assign var=new value="new"|cat:$i}
24 {assign var=combobox value="combobox"|cat:$i}
25 <tr {if $class}class="{$class}"{/if}>
26   <td class="titre">
27   {if $name eq "email_directory"}
28       Email&nbsp;annuaire&nbsp;AX
29   {elseif $name eq "email"}
30     Ajouter&nbsp;une&nbsp;adresse&nbsp;email
31   {else}
32     Email&nbsp;professionnel
33   {/if}
34   </td>
35   {if $name eq "email"}<td></td>{/if}
36   <td>
37     {if $name neq "email"}<div style="float: left">{/if}
38     <select name="{$name}" id="{$combobox}">
39       {if $email_type eq "directory"}
40       <optgroup label="Email annuaire AX">
41         <option value="{$email_directory}" {if
42         $val eq $email_directory}selected="selected"{/if}>{$email_directory}</option>
43       </optgroup>
44       {/if}
45       {if $name eq "email_directory"}
46       <optgroup label="Emails polytechniciens">
47         {if $melix}
48         <option value="{$melix}@{#globals.mail.alias_dom#}" {if
49                 $val eq $melix|cat:'@'|cat:#globals.mail.alias_dom#}selected="selected"{/if}>
50           {$melix}@{#globals.mail.alias_dom#}</option>
51         <option value="{$melix}@{#globals.mail.alias_dom2#}" {if
52                 $val eq $melix|cat:'@'|cat:#globals.mail.alias_dom2#}selected="selected"{/if}>
53           {$melix}@{#globals.mail.alias_dom2#}</option>
54         {/if}
55         {foreach from=$list_email_X item=email}
56         <option value="{$email.alias}@{#globals.mail.domain#}" {if
57                 $val eq $email.alias|cat:'@'|cat:#globals.mail.domain#}selected="selected"{/if}>
58           {$email.alias}@{#globals.mail.domain#}</option>
59         <option value="{$email.alias}@{#globals.mail.domain2#}" {if
60                 $val eq $email.alias|cat:'@'|cat:#globals.mail.domain2#}selected="selected"{/if}>
61           {$email.alias}@{#globals.mail.domain2#}</option>
62         {/foreach}
63       </optgroup>
64       {/if}
65       {if (($name neq "email") && ($list_email_redir|@count neq 0))}
66       <optgroup label="Redirections">
67         {foreach from=$list_email_redir item=email}
68         <option value="{$email}" {if $val eq $email}selected="selected"{/if}>{$email}</option>
69         {/foreach}
70       </optgroup>
71       {/if}
72       {if $list_email_pro|@count neq 0}
73       <optgroup label="Emails professionels">
74         {foreach from=$list_email_pro item=email}
75         <option value="{$email}" {if
76                 $val eq $email}selected="selected"{/if}>{$email}</option>
77         {/foreach}
78       </optgroup>
79       {/if}
80       <optgroup label="Autres choix">
81         <option value="new@example.org" {if $error}selected="selected"{/if}>Utiliser une autre adresse email</option>
82         <option value="" {if (($val eq '') && (!$error))}selected="selected"{/if}>{if
83         $name neq "email"}Ne pas mettre d'adresse email{else}&nbsp;{/if}</option>
84       </optgroup>
85     </select>
86     {if $name neq "email"}
87     </div>
88     <div style="float: right" class="flags">
89     {if $name eq "email_directory"}
90       <input type="checkbox" disabled="disabled" checked="checked"/>
91       {icon name="flag_orange" title="Visible sur l'annuaire"}
92     {elseif $name neq "email"}
93     {include file="include/flags.radio.tpl" name="`$jobpref`[`$prefix`email_pub]" val=$pub}
94     {/if}
95     </div>
96     {/if}
97   </td>
98   {if $name eq "email"}<td></td>{/if}
99 </tr>
100 <tr {if $class}class="{$class} {$new}"{else}class="{$new}"{/if} style="display: none">
101   <td></td>
102   {if $name eq "email"}<td></td>{/if}
103   <td>
104     <span class="{$new}" style="display: none">
105       <input type="text" maxlength="60" {if $error}class="error" value="{$val}"{/if} name="{if (($name neq "email_directory")
106       && ($name neq "email"))}jobs[{$i}][{$prefix}email_new]{else}{$name}_new{/if}"/>
107     </span>
108     <script type="text/javascript">//<![CDATA[
109       {literal}
110       $(function() {
111         var i = {/literal}{$i}{literal};
112         $('select#combobox' + i).change(function() {
113           $('.new' + i).hide();
114           if ($('select#combobox' + i).val() == "new@example.org") {
115             $('.new' + i).show();
116           }
117         }).change();
118       });
119       {/literal}
120     // ]]></script>
121   </td>
122   {if $name eq "email"}<td></td>{/if}
123 </tr>
124 {if $name neq "email"}
125 <tr {if $class}class="{$class} {$new}"{else}class="{$new}"{/if} style="display: none">
126   <td colspan="2">
127     <small><strong><em>Attention :</em></strong> cette adresse email figurera dans
128     {if $name eq "email_directory"}l'annuaire papier{else}tes informations professionnelles
129     {/if} mais n'est pas ajoutée à la liste de tes redirections. Nous te conseillons fortement de
130     <strong><a href="emails/redirect">l'ajouter là</a></strong>, surtout
131     si tu n'en as plus de valide.</small>
132   </td>
133 </tr>
134 {/if}
135
136 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}