X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fmisc%2Fcancel_pkg.html;h=d3ca9964f422476320602c0d04cf9d25e558e39d;hp=c802897bb140b61a45b8e8fad44ae23fbf76750f;hb=bb174fcb28d7df1673a9c55edc7d953017b5288f;hpb=7f97d2688290e99de6aecec08a32254dae365105 diff --git a/httemplate/misc/cancel_pkg.html b/httemplate/misc/cancel_pkg.html index c802897bb..d3ca9964f 100755 --- a/httemplate/misc/cancel_pkg.html +++ b/httemplate/misc/cancel_pkg.html @@ -60,12 +60,14 @@ % foreach my $uncancel_svc (@uncancel_svcs) { % my $uncancel_curr_value = $uncancel_svc->{'uncancel_svcnum'}; % my $uncancel_disabled = ''; +% my $uncancel_postfix = ''; % if ($cgi->param('error')) { -% $uncancel_curr_value = '' unless grep { $_ == $uncancel_svc->{'_uncancel_svcnum'} } $cgi->param('only_svcnum'); +% $uncancel_curr_value = '' unless grep { $_ == $uncancel_svc->{'uncancel_svcnum'} } $cgi->param('only_svcnum'); % } % unless ($uncancel_svc->{'reprovisionable'}) { % $uncancel_curr_value = ''; % $uncancel_disabled = 1; +% $uncancel_postfix = '(' . emt('Cannot be reprovisioned') . ')'; % } <& /elements/tr-checkbox.html, 'label' => $uncancel_svc->{'svc'} . ': ' . $uncancel_svc->{'label'}, @@ -73,7 +75,8 @@ 'value' => $uncancel_svc->{'uncancel_svcnum'}, 'curr_value' => $uncancel_curr_value, 'disabled' => $uncancel_disabled, - 'cell_style' => 'font-weight: normal;' + 'cell_style' => 'font-weight: normal', + 'postfix' => $uncancel_postfix, &> % } % }