mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-31 17:41:33 +00:00
38 lines
675 B
JavaScript
38 lines
675 B
JavaScript
Ext.define('PMG.SystemConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgSystemConfiguration',
|
|
|
|
title: gettext('System Configuration'),
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Network'),
|
|
xtype: 'proxmoxNodeNetworkView',
|
|
nodename: Proxmox.NodeName
|
|
},
|
|
{
|
|
title: gettext('Time'),
|
|
xtype: 'proxmoxNodeTimeView',
|
|
nodename: Proxmox.NodeName
|
|
},
|
|
{
|
|
title: gettext('Backup'),
|
|
html: "Backkup"
|
|
},
|
|
{
|
|
title: gettext('Restore'),
|
|
html: "Restore"
|
|
},
|
|
{
|
|
title: gettext('Reports'),
|
|
html: "Reports"
|
|
},
|
|
{
|
|
title: gettext('SSH Access'),
|
|
html: "SSH Access"
|
|
}
|
|
]
|
|
});
|
|
|
|
|