<% include('elements/svc_Common.html', 'table' => 'svc_cert', 'labels' => \%labels, #'html_foot' => $html_foot, 'fields' => \@fields, ) %> <%init> my $fields = FS::svc_cert->table_info->{'fields'}; my %labels = map { $_ => ( ref($fields->{$_}) ? $fields->{$_}{'label'} : $fields->{$_} ); } keys %$fields; my @fields = ( { field=>'privatekey', value=> sub { my $svc_cert = shift; if ( $svc_cert->privatekey && $svc_cert->check_privatekey ) { 'Verification OK'; } elsif ( $svc_cert->privatekey ) { 'Verification error'; } else { '(none)'; } }, }, qw( organization organization_unit city state country cert_contact ) );