diff options
Diffstat (limited to 'httemplate/elements/location.html')
| -rw-r--r-- | httemplate/elements/location.html | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/httemplate/elements/location.html b/httemplate/elements/location.html index 5c7c888de..41a67a0cb 100644 --- a/httemplate/elements/location.html +++ b/httemplate/elements/location.html @@ -33,7 +33,7 @@ Example: 'options' => \@location_kind_options, 'labels' => $location_kind_labels, 'curr_value' => scalar($cgi->param('location_kind')) - || $object->get($pre.'location_kind'), + || $object->get('location_kind'), ) %> </TD> @@ -164,7 +164,7 @@ Example: NAME = "<%$pre%>zip" ID = "<%$pre%>zip" VALUE = "<% $object->get('zip') |h %>" - SIZE = 10 + SIZE = 11 onChange = "<% $onchange %>" <% $disabled %> <% $style %> @@ -179,7 +179,7 @@ Example: % if ( $opt{enable_coords} ) { <TR> - <TD ALIGN="right"><% mt('Latitude') |h %></TH> + <TD ALIGN="right"><% mt('Latitude') |h %></TD> <TD COLSPAN=7> <INPUT TYPE = "text" NAME = "<%$pre%>latitude" @@ -200,42 +200,50 @@ Example: </TR> % } else { % foreach (qw(latitude longitude)) { -<INPUT TYPE="hidden" NAME="<% $_ %>" VALUE="<% $object->get($_) |h%>"> +<INPUT TYPE="hidden" NAME="<% $_ %>" ID="<% $_ %>" VALUE="<% $object->get($_) |h%>"> % } % } <INPUT TYPE="hidden" NAME="<%$pre%>coord_auto" VALUE="<% $object->coord_auto %>"> <INPUT TYPE="hidden" NAME="<%$pre%>geocode" VALUE="<% $object->geocode %>"> +<INPUT TYPE="hidden" NAME="<%$pre%>censustract" VALUE="<% $object->censustract %>"> <INPUT TYPE="hidden" NAME="<%$pre%>censusyear" VALUE="<% $object->censusyear %>"> -<TR> % if ( $opt{enable_censustract} ) { +<TR> <TD ALIGN="right">Census tract</TD> <TD COLSPAN=8> <INPUT TYPE="text" SIZE=15 - NAME="<%$pre%>censustract" - VALUE="<% $object->censustract %>"> + NAME="enter_censustract" + VALUE="<% $object->censustract |h %>"> <% '(automatic)' %> </TD> -% } else { - <INPUT TYPE="hidden" NAME="<%$pre%>censustract" VALUE="<% $object->censustract %>"> -% } </TR> -% if ( $conf->config('tax_district_method') ) { +% } +% if ( $opt{enable_district} and $conf->config('tax_district_method') ) { <TR> -% if ( $opt{enable_district} ) { <TD ALIGN="right">Tax district</TD> <TD COLSPAN=8> <INPUT TYPE="text" SIZE=15 NAME="<%$pre%>district" - VALUE="<% $object->district %>"> + ID="<%$pre%>district" + VALUE="<% $object->district |h %>"> <% '(automatic)' %> </TD> -% } else { - <INPUT TYPE="hidden" NAME="<%$pre%>district" VALUE="<% $object->district %>"> -% } </TR> +% } else { + <INPUT TYPE="hidden" ID="<%$pre%>" NAME="<%$pre%>district" VALUE="<% $object->district %>"> % } +%# For address standardization: +%# keep a clean copy of the address so we know if we need +%# to re-standardize +% foreach (qw(address1 city state country zip latitude +% longitude censustract district addr_clean) ) { +<INPUT TYPE="hidden" NAME="old_<%$pre.$_%>" ID="old_<%$pre.$_%>" VALUE="<% $object->get($_) |h%>"> +% } +%# Placeholders +<INPUT TYPE="hidden" NAME="<%$pre%>cachenum" VALUE=""> +<INPUT TYPE="hidden" NAME="<%$pre%>addr_clean" VALUE=""> <%init> my %opt = @_; |
