qualification address handling changes, RT#7111
authorivan <ivan>
Sun, 13 Mar 2011 03:26:57 +0000 (03:26 +0000)
committerivan <ivan>
Sun, 13 Mar 2011 03:26:57 +0000 (03:26 +0000)
httemplate/elements/location.html
httemplate/misc/qual.html

index 39e7041..e93553e 100644 (file)
@@ -20,13 +20,14 @@ Example:
 % if ( $opt{'alt_format'} ) {
 
 <TR>
-    <<%$th%> ALIGN="right">Location type</<%$th%>>
+    <<%$th%> ALIGN="right">Location kind</<%$th%>>
     <TD>
     <% include('/elements/select.html',
                  'cgi'        => $cgi,
                  'field'      => 'location_kind',
+                 'id'         => 'location_kind',
                  'disabled'   => $disabled,
-                 'style'      => $style, 
+                 'style'      => \@style,
                  'options'    => \@location_kind_options,
                  'labels'     => $location_kind_labels,
                  'curr_value' => scalar($cgi->param('location_kind'))
@@ -78,7 +79,7 @@ Example:
       >
 
 <TR>
-    <<%$th%> ALIGN="right">Unit Type and #</<%$th%>>
+    <<%$th%> ALIGN="right">Unit type and #</<%$th%>>
     <TD COLSPAN=7>
 
 %     my $location_type = scalar($cgi->param('location_type'))
@@ -95,8 +96,9 @@ Example:
         <% include('/elements/select.html',
                      'cgi'        => $cgi,
                      'field'      => 'location_type',
+                     'id'         => 'location_type',
                      'disabled'   => $disabled,
-                     'style'      => $style,
+                     'style'      => \@style,
                      'options'    => [ keys %location_types ],
                      'labels'     => \%location_types,
                      'curr_value' => $location_type,
@@ -126,10 +128,10 @@ Example:
 %     }
 
     <INPUT TYPE="text" 
-               NAME="location_number"
-               ID="location_number"
-               VALUE="<% scalar($cgi->param('location_number')) || $object->get($pre.'location_number') |h %>"
-               SIZE="5"
+               NAME  = "location_number"
+               ID    = "location_number"
+               VALUE = "<% scalar($cgi->param('location_number')) || $object->get($pre.'location_number') |h %>"
+               SIZE  = "5"
                <% $disabled || ($location_type ? '' : 'DISABLED') %>
                <% $style %>
         >
index 84ba78e..ed6ba2d 100644 (file)
@@ -29,7 +29,7 @@
 
 <% include('/elements/tr-input-text.html',
              'cgi'     => $cgi,
-             'label'   => 'Service Telephone Number',
+             'label'   => 'Service phone number',
              'field'   => 'phonenum',
              'size'    => '12',
              'value'   => scalar($cgi->param('phonenum')),