mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-03 14:05:42 +00:00
25 lines
431 B
JavaScript
25 lines
431 B
JavaScript
Ext.define('PMG.SpamQuarantine', {
|
|
extend: 'Ext.tab.Panel',
|
|
xtype: 'pmgSpamQuarantine',
|
|
|
|
title: gettext('Spam Quarantine') + ': ' + Proxmox.UserName,
|
|
border: false,
|
|
scrollable: true,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Today'),
|
|
itemId: 'today',
|
|
html: "Backup"
|
|
},
|
|
{
|
|
title: gettext('Archive'),
|
|
itemId: 'archive',
|
|
html: "Archive"
|
|
}
|
|
]
|
|
});
|
|
|
|
|