]> git.proxmox.com Git - pmg-gui.git/blame - js/BackupConfiguration.js
mainview/quarantine: add theme switcher
[pmg-gui.git] / js / BackupConfiguration.js
CommitLineData
d3ad46ba
SI
1Ext.define('PMG.BackupConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgBackupConfiguration',
4
5 title: gettext('Backup'),
6
7 border: false,
8 defaults: { border: false },
9
10 items: [
11 {
12 itemId: 'local',
13 title: gettext('Local Backup/Restore'),
14 xtype: 'pmgBackupRestore',
15 },
d944805a
SI
16 {
17 itemId: 'proxmoxbackupserver',
18 title: 'Proxmox Backup Server',
19 xtype: 'pmgPBSConfig',
20 },
d3ad46ba
SI
21 ],
22});
23