Can add/remove/edit addresses
[platal.git] / templates / geoloc / form.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 <input type="hidden" name="{$name}[changed]" value="0"/>
24 {if $adr.geoloc}
25 <div class="erreur">
26   La geolocalisation n'a pas donné un résultat certain, valide la nouvelle adresse
27   ou modifie l'ancienne pour que ton adresse puisse être prise en compte.
28 </div>
29 <script type="text/javascript">setTimeout("document.location += '#{$adid}'", 10);</script>
30 {/if}
31 <textarea name="{$name}[text]" cols="30" rows="4"
32           onchange="form['{$name}[changed]'].value=1"
33           {if !$adr.cityid && $adr.datemaj}class="error"{/if}
34           >{$adr.text}</textarea>
35 {if $adr.geoloc}
36 <textarea cols="30" rows="4"
37           class="valid"
38           onclick="blur()"
39           >{$adr.geoloc}</textarea>
40 <p class="center">
41   <input type="submit" name="{$name}[parsevalid]" value="Valider l'adresse" />
42 </p>
43 {/if}
44 <input type="hidden" name="{$name}[cityid]" value="{$adr.cityid}" />
45 <input type="hidden" name="{$name}[adr1]" value="{$adr.adr1}" />
46 <input type="hidden" name="{$name}[adr2]" value="{$adr.adr2}" />
47 <input type="hidden" name="{$name}[adr3]" value="{$adr.adr3}" />
48 <input type="hidden" name="{$name}[postcode]" value="{$adr.postcode}"/>
49 <input type="hidden" name="{$name}[city]" value="{$adr.city}" />
50 <input type="hidden" name="{$name}[country]" value="{$adr.country}" />
51 <input type="hidden" name="{$name}[countrytxt]" value="{$adr.countrytxt}" />
52 <input type="hidden" name="{$name}[region]" value="{$adr.region}" />
53 <input type="hidden" name="{$name}[regiontxt]" value="{$adr.regiontxt}" />
54 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}