Merge branch 'master' into fusionax
[platal.git] / templates / geoloc / form.address.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
8d84c630 3{* Copyright (C) 2003-2009 Polytechnique.org *}
0337d704 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
041a5cec 23{if $address.geoloc}
42568423
SJ
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>
541e8d03
SJ
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)"
42568423
SJ
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>
0b14f91d 35</div>
0b14f91d 36{/if}
041a5cec 37
32346370 38<div>
541e8d03 39 <textarea name="{$prefname}[text]" cols="30" rows="4" onkeyup="addressChanged('{$prefid}')"
041a5cec
SJ
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>
0b14f91d 44{/if}
32346370 45</div>
041a5cec
SJ
46{if $address.geoloc}
47<input type="hidden" name="{$prefname}[geoloc_choice]" value="1" />
48<input type="hidden" name="{$prefname}[geoloc]" value="{$address.geoloc}" />
5a10ab14 49<input type="hidden" name="{$prefname}[geocodedPostalText]" value="{$address.geocodedPostalText}" />
041a5cec
SJ
50<input type="hidden" name="{$prefname}[updateTime]" value="{$address.updateTime}" />
51{/if}
041a5cec 52<input type="hidden" name="{$prefname}[accuracy]" value="{$address.accuracy}" />
6ee948c2 53<input type="hidden" name="{$prefname}[postalText]" value="{$address.postalText}" />
041a5cec
SJ
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}" />
041a5cec
SJ
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
a7de4ef7 70{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}