mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-03 18:01:22 +00:00
20 lines
351 B
JavaScript
20 lines
351 B
JavaScript
Ext.define('PMG.ServerAdministration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgServerAdministration',
|
|
|
|
title: gettext('Server Administration'),
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Services'),
|
|
html: "Server Administration1"
|
|
},
|
|
{
|
|
title: gettext('Updates'),
|
|
html: "Server Administration2"
|
|
}
|
|
]
|
|
});
|
|
|
|
|