]> git.proxmox.com Git - pmg-gui.git/blob - js/SystemConfiguration.js
add network configuration
[pmg-gui.git] / js / SystemConfiguration.js
1 Ext.define('PMG.SystemConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgSystemConfiguration',
4
5 title: gettext('System Configuration'),
6
7 items: [
8 {
9 title: gettext('Network'),
10 xtype: 'proxmoxNodeNetworkView',
11 nodename: Proxmox.NodeName
12 },
13 {
14 title: gettext('Time'),
15 xtype: 'proxmoxNodeTimeView',
16 nodename: Proxmox.NodeName
17 },
18 {
19 title: gettext('Backup'),
20 html: "Backkup"
21 },
22 {
23 title: gettext('Restore'),
24 html: "Restore"
25 },
26 {
27 title: gettext('Reports'),
28 html: "Reports"
29 },
30 {
31 title: gettext('SSH Access'),
32 html: "SSH Access"
33 }
34 ]
35 });
36
37