add replication grid to lxc/qemu/node

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2017-06-13 14:56:06 +02:00 committed by Dietmar Maurer
parent 56297d42c5
commit cb6df20c2e
3 changed files with 18 additions and 0 deletions

View File

@ -190,6 +190,12 @@ Ext.define('PVE.lxc.Config', {
iconCls: 'fa fa-floppy-o', iconCls: 'fa fa-floppy-o',
xtype: 'pveBackupView', xtype: 'pveBackupView',
itemId: 'backup' itemId: 'backup'
},
{
title: gettext('Replication'),
iconCls: 'fa fa-retweet',
xtype: 'pveReplicaView',
itemId: 'replication'
}); });
} }

View File

@ -239,6 +239,12 @@ Ext.define('PVE.node.Config', {
iconCls: 'fa fa-ceph', iconCls: 'fa fa-ceph',
xtype: 'pveNodeCephStatus' xtype: 'pveNodeCephStatus'
}, },
{
xtype: 'pveReplicaView',
iconCls: 'fa fa-retweet',
title: gettext('Replication'),
itemId: 'replication'
},
{ {
xtype: 'pveNodeCephConfigCrush', xtype: 'pveNodeCephConfigCrush',
title: gettext('Configuration'), title: gettext('Configuration'),

View File

@ -221,6 +221,12 @@ Ext.define('PVE.qemu.Config', {
iconCls: 'fa fa-floppy-o', iconCls: 'fa fa-floppy-o',
xtype: 'pveBackupView', xtype: 'pveBackupView',
itemId: 'backup' itemId: 'backup'
},
{
title: gettext('Replication'),
iconCls: 'fa fa-retweet',
xtype: 'pveReplicaView',
itemId: 'replication'
}); });
} }