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