summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_hardware.cgi
blob: d982bc8a67751333d4a9a7f97028f58fe4d08eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<% include('elements/svc_Common.html',
            'table'        => 'svc_hardware',
            'labels'       => \%labels,
            'fields'       => \@fields,
          )
%>
<%init>

my $fields = FS::svc_hardware->table_info->{'fields'};
my %labels = map { $_ =>  ( ref($fields->{$_})
                             ? $fields->{$_}{'label'}
                             : $fields->{$_}
                         );
                 } keys %$fields;
my $model =  { field => 'typenum',
               type  => 'text',
               value => sub { $_[0]->hardware_type->model }
             };
my $status = { field => 'statusnum',
               type  => 'text',
               value => sub { $_[0]->status_label }
             };
my $note =   { field => 'note',
               type  => 'text',
               value => sub { encode_entities($_[0]->note) }
             };
my @fields = ($model, qw( serial hw_addr ip_addr smartcard ), $status, $note );
</%init>