Add Storage Pool Info
This commit is contained in:
@@ -33,14 +33,6 @@ class Controller_NODE extends Controller_TemplateDefault {
|
||||
$output .= Form::submit('form_submit',_('Go'));
|
||||
$output .= Form::close();
|
||||
|
||||
Script::add(array(
|
||||
'type'=>'stdin',
|
||||
'data'=>'
|
||||
$(document).ready(function () {$("#node_name").change(function () {
|
||||
$("#node_detail").trigger("submit");
|
||||
});});'
|
||||
));
|
||||
|
||||
Block::add(array(
|
||||
'title'=>_('TSM Nodes'),
|
||||
'body'=>$output,
|
||||
@@ -71,22 +63,22 @@ $(document).ready(function () {$("#node_name").change(function () {
|
||||
|
||||
Block::add(array(
|
||||
'title'=>sprintf('%s %s',_('Detailed Node Information for'),$no->NODE_NAME),
|
||||
'body'=>View::factory('nodes/detail')->set('node',$no),
|
||||
'body'=>View::factory('node/detail')->set('node',$no),
|
||||
));
|
||||
|
||||
Block::add(array(
|
||||
'title'=>_('Protected File System Information'),
|
||||
'body'=>View::factory('nodes/detail_filesystem')->set('node',$no),
|
||||
'body'=>View::factory('node/detail_filesystem')->set('node',$no),
|
||||
));
|
||||
|
||||
Block::add(array(
|
||||
'title'=>_('Sequential Volume Usage Information'),
|
||||
'body'=>View::factory('nodes/detail_volumes')->set('node',$no),
|
||||
'body'=>View::factory('node/detail_volumes')->set('node',$no),
|
||||
));
|
||||
|
||||
Block::add(array(
|
||||
'title'=>_('Schedule Information'),
|
||||
'body'=>View::factory('nodes/detail_schedule')->set('node',$no),
|
||||
'body'=>View::factory('node/detail_schedule')->set('node',$no),
|
||||
));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user