2009-08-24 Sancho Lerena <slerena@artica.es>

* operation/agentes/alerts_status.php: Show description instead name,
        and help icon better placed.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1879 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2009-08-24 21:53:27 +00:00
parent a7dfd4814b
commit 5b81f863c8
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2009-08-24 Sancho Lerena <slerena@artica.es>
* operation/agentes/alerts_status.php: Show description instead name,
and help icon better placed.
2009-08-24 Miguel de Dios <miguel.dedios@artica.es> 2009-08-24 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/map_builder.php, * godmode/reporting/map_builder.php,

View File

@ -100,7 +100,9 @@ if ($tab != '') {
$url = $url.'&tab='.$tab; $url = $url.'&tab='.$tab;
} }
echo "<h2>".__('Pandora agents')." &raquo; ".__('Alerts').'</h2>'; echo "<h2>".__('Pandora agents')." &raquo; ".__('Alerts');
echo print_help_icon ('alert_validation', true);
echo "</h2>";
echo '<form method="post" action="'.$url.'">'; echo '<form method="post" action="'.$url.'">';
@ -133,14 +135,14 @@ $table->size[1] = '25%';
$table->size[2] = '50%'; $table->size[2] = '50%';
$table->size[3] = '25%'; $table->size[3] = '25%';
$table->size[4] = '20px'; $table->size[4] = '20px';
$table->size[5] = '20px'; $table->size[5] = '60px';
$table->head = array (); $table->head = array ();
$table->head[0] = ''; $table->head[0] = '';
$table->head[1] = ''; //Placeholder for name $table->head[1] = ''; //Placeholder for name
$table->head[2] = __('Template'); $table->head[2] = __('Template');
$table->head[3] = __('Last fired'); $table->head[3] = __('Last fired');
$table->head[4] = __('Status'); $table->head[4] = __('Status');
$table->head[5] = __('Validate').print_help_icon ('alert_validation', true); $table->head[5] = __('Validate');
$table->title = __('Single alerts'); $table->title = __('Single alerts');
if ($print_agent == 0) { if ($print_agent == 0) {
@ -185,7 +187,7 @@ if (!empty ($table->data)) {
$table->title = __('Compound alerts'); $table->title = __('Compound alerts');
$table->head[1] = __('Agent'); $table->head[1] = __('Agent');
$table->head[2] = __('Name'); $table->head[2] = __('Description');
$table->data = array (); $table->data = array ();
$combined_total = 0; $combined_total = 0;