Can add/remove/edit addresses
[platal.git] / templates / profile / adresses.address.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 {if $ajaxadr}
24 <?xml version="1.0" encoding="utf-8"?>
25 {/if}
26 {assign var=adpref value="addresses[$i]"}
27 {assign var=adid value="addresses_$i"}
28 <input type="hidden" name="{$adpref}[removed]" value="0"/>
29 <input type="hidden" name="{$adpref}[datemaj]" value="{$adr.datemaj}"/>
30 <table class="bicol" style="margin-bottom: 1em">
31   <tr>
32     <th>
33       <div style="float: left">
34         <input name="{$adpref}[current]" type="radio" value="1" {if $adr.current}checked="checked"{/if}
35                id="{$adid}_current" onchange="checkCurrentAddress(this); return true" />
36         <label for="{$adid}_current" class="smaller" style="font-weight: normal">actuelle</label>
37       </div>
38       <div style="float: right">
39         <a href="javascript:removeAddress('{$adid}', '{$adpref}')">{icon name=cross title="Supprimer l'adresse"}</a>
40       </div>
41       Adresse n°{$i+1}
42     </th>
43   </tr>
44   <tr>
45     <td>
46       <div>{include file="include/flags.radio.tpl" name="`$adpref`[pub]" notable=true val=$adr.pub}</div>
47       <div style="clear: both"></div>
48       <div style="float: left">{include file="geoloc/form.address.tpl" name=$adpref id=$adid adr=$adr}</div>
49       <div style="float: right">
50         <div>
51           <input type="radio" name="{$adpref}[temporary]" id="{$adid}_temp_0" value="0"
52                  {if !$adr.temporary}checked="checked"{/if} /><label for="{$adid}_temp_0">permanente</label>
53           <input type="radio" name="{$adpref}[temporary]" id="{$adid}_temp_1" value="1"
54                  {if $adr.temporary}checked="checked"{/if} /><label for="{$adid}_temp_1">temporaire</label>
55         </div>
56         <div>
57           <input type="radio" name="{$adpref}[secondaire]" id="{$adid}_sec_0" value="0"
58                  {if !$adr.secondaire}checked="checked"{/if} /><label for="{$adid}_sec_0">ma résidence principale</label>
59           <input type="radio" name="{$adpref}[secondaire]" id="{$adid}_sec_1" value="1"
60                  {if $adr.secondaire}checked="checked"{/if} /><label for="{$adid}_sec_1">une résidence secondaire</label>
61         </div>
62         <div>
63           <input type="checkbox" name="{$adpref}[mail]" id="{$adid}_mail"
64                  {if $adr.mail}checked="checked"{/if} />
65           <label for="{$adid}_mail">on peut m'y envoyer du courrier par la poste</label>
66         </div>
67       </div>
68     </td>
69   </tr>
70   <tr class="pair">
71     <td>
72       {foreach from=$adr.tel key=t item=tel}
73       <div id="{"`$adid`_tel_`$t`"}" style="clear: both">
74       {include file="profile/adresses.tel.tpl" t=$t tel=$tel}
75       </div>
76       {/foreach}
77       {if $adr.tel|@count eq 0}
78       <div id="{"`$adid`_tel_0"}" style="clear: both">
79       {include file="profile/adresses.tel.tpl" t=0 tel=0}
80       </div>
81       {/if}
82       <div id="{$adid}_add_tel" class="center" style="clear: both">
83         <a href="javascript:addTel({$i})">
84           {icon name=add title="Ajouter un numéro de téléphone"} Ajouter un numéro de téléphone
85         </a>
86       </div>
87     </td>
88   </tr>
89 </table>
90
91 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}