Merge commit 'origin/master' into account
[platal.git] / templates / geoloc / form.address.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2010 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 $address.geoloc}
24 <div class="erreur center {$prefid}_geoloc">
25   Le géocodage n'a pas donné un résultat certain&nbsp;! Tu as le choix entre&nbsp;:
26 </div>
27 <div class="{$prefid}_geoloc">
28   <ul>
29     <li><a href="javascript:validGeoloc('{$prefid}', '{$id}', 0)" style="color: red">ton adresse (à gauche)</a>&nbsp;;</li>
30     <li><a href="javascript:validGeoloc('{$prefid}', '{$id}', 1)" style="color: green">notre suggestion (à droite)</a>&nbsp;;</li>
31     <li><a href="javascript:validGeoloc('{$prefid}', '{$id}', 2)"
32            title="Garder le texte de l'adresse que tu as renseignée tout en utilisant les informations trouvées par le géocodage pour te localiser sur le planisphère et dans lors d'une recherche dans l'annuaire.">
33       le texte de ton adresse localisé à l'endroit que nous te suggérons</a>.</li>
34   </ul>
35 </div>
36 {/if}
37
38 <div>
39   <textarea name="{$prefname}[text]" cols="30" rows="4" onkeyup="addressChanged('{$prefid}')"
40             {if $address.geoloc}class="error"{/if}>{$address.text}</textarea>
41 {if $address.geoloc}
42   <textarea cols="30" rows="4" class="valid {$prefid}_geoloc"
43             name="{$prefname}[geoloc]">{$address.geoloc}</textarea>
44 {/if}
45 </div>
46 {if $address.geoloc}
47 <input type="hidden" name="{$prefname}[geoloc_choice]" value="1" />
48 <input type="hidden" name="{$prefname}[geoloc]" value="{$address.geoloc}" />
49 <input type="hidden" name="{$prefname}[geocodedPostalText]" value="{$address.geocodedPostalText}" />
50 <input type="hidden" name="{$prefname}[updateTime]" value="{$address.updateTime}" />
51 {/if}
52 <input type="hidden" name="{$prefname}[accuracy]" value="{$address.accuracy}" />
53 <input type="hidden" name="{$prefname}[postalText]" value="{$address.postalText}" />
54 <input type="hidden" name="{$prefname}[postalCode]" value="{$address.postalCode}" />
55 <input type="hidden" name="{$prefname}[administrativeAreaId]" value="{$address.administrativeAreaId}" />
56 <input type="hidden" name="{$prefname}[subAdministrativeAreaId]" value="{$address.subAdministrativeAreaId}" />
57 <input type="hidden" name="{$prefname}[localityId]" value="{$address.localityId}" />
58 <input type="hidden" name="{$prefname}[countryId]" value="{$address.countryId}" />
59 <input type="hidden" name="{$prefname}[latitude]" value="{$address.latitude}" />
60 <input type="hidden" name="{$prefname}[longitude]" value="{$address.longitude}" />
61 <input type="hidden" name="{$prefname}[north]" value="{$address.north}" />
62 <input type="hidden" name="{$prefname}[south]" value="{$address.south}" />
63 <input type="hidden" name="{$prefname}[east]" value="{$address.east}" />
64 <input type="hidden" name="{$prefname}[west]" value="{$address.west}" />
65 <input type="hidden" name="{$prefname}[cedex]" value="{$address.cedex}" />
66 <input type="hidden" name="{$prefname}[updateTime]" value="{$address.updateTime}" />
67 <input type="hidden" name="{$prefname}[changed]" value="0" />
68 <input type="hidden" name="{$prefname}[removed]" value="0" />
69
70 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}