X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Flocations.html;h=98c933645cbaada7eaf9b2434807fbb5948394eb;hb=d0c5ddbd31af8b1747d447f31623e1af05961eb4;hp=319a9274784673af36360ebe5ac31907d56c7774;hpb=f424f11eb366fe64f5f7bb42b21745e22537cab1;p=freeside.git diff --git a/httemplate/view/cust_main/locations.html b/httemplate/view/cust_main/locations.html index 319a92747..98c933645 100755 --- a/httemplate/view/cust_main/locations.html +++ b/httemplate/view/cust_main/locations.html @@ -10,7 +10,7 @@ span.loclabel { % my $packages = $packages_in{$locationnum}; % my $loc = $locations{$locationnum}; % next if $loc->disabled and scalar(@$packages) == 0; -<% include('/elements/table-grid.html') %> +<& /elements/table-grid.html &> % if (! $locationnum) { -Default service location: +<% mt('Default service location:') |h %> % } % elsif ( $loc->disabled ) { @@ -29,12 +29,12 @@ Default service location: % if ( $locationnum and !$loc->disabled ) { <% edit_location_link($locationnum) %> % } -% if ( !$loc->disabled and !$active{$locationnum} ) { +% if ( $locationnum and !$loc->disabled and !$active{$locationnum} ) {  <% disable_location_link($locationnum) %> % } % if (@$packages) { -<% include('packages/section.html', 'packages' => $packages ) %> +<& packages/section.html, 'packages' => $packages &> % }
% } #foreach $locationnum @@ -50,7 +50,7 @@ my %locations = map { $_->locationnum => $_ } qsearch({ }); my @sections = keys %locations; $locations{''} = $cust_main; -my %packages_in = map { $_ => [] } @sections; +my %packages_in = map { $_ => [] } ('', @sections); my %active = (); # groups with non-canceled packages foreach my $cust_pkg ( @$all_packages ) { @@ -69,8 +69,8 @@ sub edit_location_link { my $locationnum = shift; include( '/elements/popup_link.html', 'action' => $p. "edit/cust_location.cgi?locationnum=$locationnum", - 'label' => '(Edit location)', - 'actionlabel' => 'Edit', + 'label' => '('.emt('Edit location').')', + 'actionlabel' => emt('Edit'), ); } @@ -78,10 +78,9 @@ sub disable_location_link { my $locationnum = shift; include( '/elements/popup_link.html', 'action' => $p. "misc/disable-cust_location.cgi?locationnum=$locationnum", - 'label' => '(Disable location)', - 'actionlabel' => 'Disable', + 'label' => '('.emt('Disable location').')', + 'actionlabel' => emt('Disable'), ); } -