mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-25 21:17:16 +00:00
25 lines
388 B
JavaScript
25 lines
388 B
JavaScript
Ext.define('PVE.openvz.CreateWizard', {
|
|
extend: 'PVE.window.Wizard',
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
Ext.applyIf(me, {
|
|
title: 'Create new container',
|
|
items: [
|
|
{
|
|
title: 'Not implemented',
|
|
descr: 'Sorry, this fuctionality is not implelemnted',
|
|
layout: 'fit',
|
|
html: 'not implemented'
|
|
}
|
|
]
|
|
});
|
|
|
|
me.callParent();
|
|
}
|
|
});
|
|
|
|
|
|
|