| %   if ( $part_pkg->option('suspend_bill', 1) ) {
      <& /elements/checkbox.html, name=>'no_suspend_bill', value=>'Y' &>
      Disable recurring billing while suspended
%   } else {
      <& /elements/checkbox.html, name=>'suspend_bill', value=>'Y' &>
      Continue recurring billing while suspended
%   } | 
% }
% if ( ( $method eq 'adjourn' || $method eq 'suspend' ) and 
%      $curuser->access_right('Unsuspend customer package') )  { #later?
%   my $resume_date = $cgi->param('error') 
%                     ? str2time($cgi->param('resume_date'))
%                     : $cust_pkg->get('resume');
  <& /elements/tr-input-date-field.html, {
      'name'    => 'resume_date',
      'value'   => $resume_date,
      'label'   => mt('Unsuspend on'),
      'format'  => $date_format,
      'noinit'  => $date_init,
  } &>
% }