]> git.proxmox.com Git - pmg-gui.git/blame - js/SystemConfiguration.js
avoid useless borders
[pmg-gui.git] / js / SystemConfiguration.js
CommitLineData
e119071c
DM
1Ext.define('PMG.SystemConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgSystemConfiguration',
4
d9e1af94 5 title: gettext('Configuration') + ': ' + gettext('System'),
830e5827
DM
6 border: false,
7 defaults: { border: false },
e119071c
DM
8
9 items: [
10 {
8e29d7f6
DM
11 title: gettext('Network'),
12 xtype: 'proxmoxNodeNetworkView',
13 nodename: Proxmox.NodeName
e119071c 14 },
61a29c9c
DM
15 {
16 title: gettext('DNS'),
17 xtype: 'proxmoxNodeDNSView',
18 nodename: Proxmox.NodeName
19 },
e119071c 20 {
2c7b542d
DM
21 title: gettext('Time'),
22 xtype: 'proxmoxNodeTimeView',
23 nodename: Proxmox.NodeName
e119071c
DM
24 },
25 {
26 title: gettext('Backup'),
27 html: "Backkup"
28 },
29 {
30 title: gettext('Restore'),
31 html: "Restore"
32 },
33 {
34 title: gettext('Reports'),
35 html: "Reports"
36 },
37 {
38 title: gettext('SSH Access'),
39 html: "SSH Access"
40 }
41 ]
42});
43
44