[pbs-devel] [PATCH proxmox-backup v2 12/15] ui: tape: use panels in tape interface
Dominik Csapak
d.csapak at proxmox.com
Thu Jan 28 12:59:52 CET 2021
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
www/tape/TapeManagement.js | 28 ++++++++++++++++++++++++++--
1 file changed, 26 insertions(+), 2 deletions(-)
diff --git a/www/tape/TapeManagement.js b/www/tape/TapeManagement.js
index d7400f06..f61c26d7 100644
--- a/www/tape/TapeManagement.js
+++ b/www/tape/TapeManagement.js
@@ -5,7 +5,31 @@ Ext.define('PBS.TapeManagement', {
title: gettext('Tape Backup'),
border: true,
- defaults: { border: false },
+ defaults: {
+ border: false,
+ xtype: 'panel',
+ },
- html: "Experimental tape backup GUI.",
+ items: [
+ {
+ title: gettext('Backup'),
+ itemId: 'backup',
+ xtype: 'pbsBackupOverview',
+ },
+ {
+ title: gettext('Changers'),
+ itemId: 'changers',
+ xtype: 'pbsChangerStatus',
+ },
+ {
+ title: gettext('Drives'),
+ itemId: 'drives',
+ xtype: 'pbsTapeDrivePanel',
+ },
+ {
+ title: gettext('Media Pools'),
+ itemId: 'pools',
+ xtype: 'pbsMediaPoolPanel',
+ },
+ ],
});
--
2.20.1
More information about the pbs-devel
mailing list