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',
xtype: 'pveBackupView',
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',
xtype: 'pveNodeCephStatus'
},
{
xtype: 'pveReplicaView',
iconCls: 'fa fa-retweet',
title: gettext('Replication'),
itemId: 'replication'
},
{
xtype: 'pveNodeCephConfigCrush',
title: gettext('Configuration'),

View File

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