<% include('/elements/header.html', { 'title' => "Customer $query status", }) %> <% include('/elements/small_custview.html', $query, '', 1) %>
% foreach my $key (keys %$return) { % my $value = $return->{$key}; % $value = join(', ', @$value) if ref($value) eq 'ARRAY'; % }
<% $key %>: <% $return->{$key} %>
<% include('/elements/footer.html') %> <%init> my $return; my($query) = $cgi->keywords; if ( $query =~ /^(\d+)$/ ) { use FS::Maestro; $return = FS::Maestro::customer_status($1); } else { $return = { 'error' => 'No custnum' }; }