diff options
author | Andreas Unterkircher <unki@srv-vie-puppet.vie.mm-karton.com> | 2008-11-29 16:20:13 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.net> | 2017-10-19 06:43:47 +0200 |
commit | 5c534dead875d82e1f4a60558d1ad95658d92df8 (patch) | |
tree | f82f809aff107070d062d4953188d249d52a71de | |
parent | 38149ef6f4d7ed843cc9c3fbd69b0a02674ed4bb (diff) | |
download | exilog-5c534dead875d82e1f4a60558d1ad95658d92df8.zip exilog-5c534dead875d82e1f4a60558d1ad95658d92df8.tar.gz exilog-5c534dead875d82e1f4a60558d1ad95658d92df8.tar.bz2 |
at least we should print the last update information
Signed-off-by: Andreas Unterkircher <unki@srv-vie-puppet.vie.mm-karton.com>
-rw-r--r-- | cgi/exilog_cgi_html.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cgi/exilog_cgi_html.pm b/cgi/exilog_cgi_html.pm index 4349fb4..d8171cd 100644 --- a/cgi/exilog_cgi_html.pm +++ b/cgi/exilog_cgi_html.pm @@ -50,6 +50,7 @@ sub render_server { my $server = shift; my $num_queued = shift; my $h24_stats = shift; + my $last_update = shift; $q->div({-class=>"top_spacer"}, $q->table({-class=>"stats", -cellspacing=>1, -cellpadding=>2, -border=>0}, @@ -63,6 +64,11 @@ sub render_server { $q->td({-class=>"large_text"}, $server ) + ), + $q->Tr( + $q->td('', ''), + $q->td('', 'last update: '. $last_update), + ) ) ), |