diff options
Diffstat (limited to 'httemplate/view/elements/svc_export_status.html')
| -rw-r--r-- | httemplate/view/elements/svc_export_status.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/httemplate/view/elements/svc_export_status.html b/httemplate/view/elements/svc_export_status.html new file mode 100644 index 000000000..d96bb277d --- /dev/null +++ b/httemplate/view/elements/svc_export_status.html @@ -0,0 +1,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> |
