diff --git a/src/UI/System/SystemLayout.js b/src/UI/System/SystemLayout.js index cdb4e680a..6232626fd 100644 --- a/src/UI/System/SystemLayout.js +++ b/src/UI/System/SystemLayout.js @@ -12,21 +12,21 @@ var StatusModel = require('./StatusModel'); module.exports = Marionette.Layout.extend({ template : 'System/SystemLayoutTemplate', regions : { - info : '#info', + status : '#status', logs : '#logs', updates : '#updates', backup : '#backup', tasks : '#tasks' }, ui : { - infoTab : '.x-info-tab', + statusTab : '.x-status-tab', logsTab : '.x-logs-tab', updatesTab : '.x-updates-tab', backupTab : '.x-backup-tab', tasksTab : '.x-tasks-tab' }, events : { - 'click .x-info-tab' : '_showInfo', + 'click .x-status-tab' : '_showStatus', 'click .x-logs-tab' : '_showLogs', 'click .x-updates-tab' : '_showUpdates', 'click .x-backup-tab' : '_showBackup', @@ -58,7 +58,7 @@ module.exports = Marionette.Layout.extend({ this._showTasks(); break; default: - this._showInfo(); + this._showStatus(); } }, _navigate : function(route){ @@ -67,13 +67,14 @@ module.exports = Marionette.Layout.extend({ replace : true }); }, - _showInfo : function(e){ - if(e) { + _showStatus : function (e) { + if (e) { e.preventDefault(); } - this.info.show(new SystemInfoLayout()); - this.ui.infoTab.tab('show'); - this._navigate('system/info'); + + this.status.show(new SystemInfoLayout()); + this.ui.statusTab.tab('show'); + this._navigate('system/status'); }, _showLogs : function(e){ if(e) { diff --git a/src/UI/System/SystemLayoutTemplate.hbs b/src/UI/System/SystemLayoutTemplate.hbs index a14338353..8c5882e7e 100644 --- a/src/UI/System/SystemLayoutTemplate.hbs +++ b/src/UI/System/SystemLayoutTemplate.hbs @@ -1,9 +1,9 @@ 
-
-
+
-
+
+
\ No newline at end of file