pmg-gui/js/SystemConfiguration.js
Dominik Csapak bca16caee8 replace alias by xtype
this is shorter

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2017-04-05 06:47:03 +02:00

49 lines
932 B
JavaScript

Ext.define('PMG.SystemConfiguration', {
extend: 'Ext.tab.Panel',
xtype: 'pmgSystemConfiguration',
title: gettext('Configuration') + ': ' + gettext('System'),
border: false,
defaults: { border: false },
items: [
{
title: gettext('Network'),
xtype: 'proxmoxNodeNetworkView',
nodename: Proxmox.NodeName
},
{
title: gettext('DNS'),
xtype: 'proxmoxNodeDNSView',
nodename: Proxmox.NodeName
},
{
title: gettext('Time'),
xtype: 'proxmoxNodeTimeView',
nodename: Proxmox.NodeName
},
{
itemId: 'backup',
title: gettext('Backup'),
html: "Backkup"
},
{
itemId: 'restore',
title: gettext('Restore'),
html: "Restore"
},
{
itemId: 'reports',
title: gettext('Reports'),
html: "Reports"
},
{
itemId: 'ssh',
title: gettext('SSH Access'),
html: "SSH Access"
}
]
});