Happy new year!
[platal.git] / templates / geoloc / form.address.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2008 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" id="{$id}_geoloc_error">
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 <div>
32 <textarea name="{$name}[text]" cols="30" rows="4"
33           onchange="form['{$name}[changed]'].value=1"
34           {if !$adr.cityid && $adr.datemaj}class="error"{/if}
35           >{$adr.text}</textarea>
36 {if $adr.geoloc}
37 <span id="{$id}_geoloc">
38 <textarea cols="30" rows="4"
39           class="valid"
40           name="{$name}[geoloc]"
41           onclick="blur()"
42           >{$adr.geoloc}</textarea>
43 <input type="hidden" name="{$name}[geoloc_cityid]" value="{$adr.geoloc_cityid}" />
44 <input type="hidden" name="{$name}[parsevalid]" value="0" />
45 </span>
46 </div>
47 <div class="center" id="{$id}_geoloc_valid">
48   <a href="javascript:validAddress('{$id}', '{$name}')">Valider ta version</a>
49   &bull;
50   <a href="javascript:validGeoloc('{$id}', '{$name}')">Valider la version géolocalisée</a>
51 {/if}
52 </div>
53 <input type="hidden" name="{$name}[cityid]" value="{$adr.cityid}" />
54 <input type="hidden" name="{$name}[adr1]" value="{$adr.adr1}" />
55 <input type="hidden" name="{$name}[adr2]" value="{$adr.adr2}" />
56 <input type="hidden" name="{$name}[adr3]" value="{$adr.adr3}" />
57 <input type="hidden" name="{$name}[postcode]" value="{$adr.postcode}"/>
58 <input type="hidden" name="{$name}[city]" value="{$adr.city}" />
59 <input type="hidden" name="{$name}[country]" value="{$adr.country}" />
60 <input type="hidden" name="{$name}[countrytxt]" value="{$adr.countrytxt}" />
61 <input type="hidden" name="{$name}[region]" value="{$adr.region}" />
62 <input type="hidden" name="{$name}[regiontxt]" value="{$adr.regiontxt}" />
63 <input type="hidden" name="{$name}[checked]" value="{$adr.checked}" />
64 <input type="hidden" name="{$name}[precise_lat]" value="{$adr.precise_lat}" />
65 <input type="hidden" name="{$name}[precise_lon]" value="{$adr.precise_lon}" />
66 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}