summaryrefslogtreecommitdiff
path: root/httemplate/view/elements/svc_export_status.html
blob: d96bb277d16beea4318e82eef7b3f32e1d1ec72e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%   my ( $html, $hashref ) = $svc_x->export_getstatus;
%   if ( keys %$hashref ) {

    Status settings
    <% ntable('#cccccc',2) %>

%     foreach my $key ( sort {$a cmp $b} keys %$hashref ) {
        <TR>
          <TD ALIGN="right"><% $key |h %></TD>
          <TD BGCOLOR="#ffffff"><% $hashref->{$key} |h %></TD>
        </TR>
%     }

    </TABLE>
    <BR>

%   }
<%init>

my $svc_x = shift;

</%init>