]> git.proxmox.com Git - pmg-gui.git/blame - js/SystemConfiguration.js
use new proxmoxlib.js (package proxmox-widget-toolkit)
[pmg-gui.git] / js / SystemConfiguration.js
CommitLineData
e119071c
DM
1Ext.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 html: "Network"
11 },
12 {
2c7b542d
DM
13 title: gettext('Time'),
14 xtype: 'proxmoxNodeTimeView',
15 nodename: Proxmox.NodeName
e119071c
DM
16 },
17 {
18 title: gettext('Backup'),
19 html: "Backkup"
20 },
21 {
22 title: gettext('Restore'),
23 html: "Restore"
24 },
25 {
26 title: gettext('Reports'),
27 html: "Reports"
28 },
29 {
30 title: gettext('SSH Access'),
31 html: "SSH Access"
32 }
33 ]
34});
35
36