summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_hardware.cgi
blob: 8201e9db08e1d7a032791252c296b36c3afe8f6e (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
<% 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 @fields = ($model, qw( serial hw_addr ip_addr smartcard ), $status, 'note' );
</%init>