Automation of the management of associations' mailing lists (Closes #817), Updates...
[platal.git] / templates / geoloc / form.address.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
179afa7f 3{* Copyright (C) 2003-2008 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
0b14f91d
FB
23<input type="hidden" name="{$name}[changed]" value="0"/>
24{if $adr.geoloc}
32346370 25<div class="erreur" id="{$id}_geoloc_error">
0b14f91d
FB
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}
32346370 31<div>
0b14f91d
FB
32<textarea name="{$name}[text]" cols="30" rows="4"
33 onchange="form['{$name}[changed]'].value=1"
c6a7beb2 34 {if !$adr.cityid && $adr.datemaj}class="error"{/if}
0b14f91d
FB
35 >{$adr.text}</textarea>
36{if $adr.geoloc}
32346370 37<span id="{$id}_geoloc">
0b14f91d
FB
38<textarea cols="30" rows="4"
39 class="valid"
32346370 40 name="{$name}[geoloc]"
0b14f91d
FB
41 onclick="blur()"
42 >{$adr.geoloc}</textarea>
1879c7b2 43<input type="hidden" name="{$name}[geoloc_cityid]" value="{$adr.geoloc_cityid}" />
32346370
FB
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>
0b14f91d 51{/if}
32346370 52</div>
0b14f91d
FB
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}" />
c24a06aa 60<input type="hidden" name="{$name}[countrytxt]" value="{$adr.countrytxt}" />
0b14f91d 61<input type="hidden" name="{$name}[region]" value="{$adr.region}" />
c24a06aa 62<input type="hidden" name="{$name}[regiontxt]" value="{$adr.regiontxt}" />
f93fb300 63<input type="hidden" name="{$name}[checked]" value="{$adr.checked}" />
de0485fd
FB
64<input type="hidden" name="{$name}[precise_lat]" value="{$adr.precise_lat}" />
65<input type="hidden" name="{$name}[precise_lon]" value="{$adr.precise_lon}" />
a7de4ef7 66{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}