5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-08 21:18:07 +03:00
proxmox-backup/www/tape/window/LabelMedia.js
Maximiliano Sandoval 053b29416f TapeInventory: Fix string missing 'in'
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
2023-11-24 14:54:21 +01:00

71 lines
1.4 KiB
JavaScript

Ext.define('PBS.TapeManagement.LabelMediaWindow', {
extend: 'Proxmox.window.Edit',
alias: 'widget.pbsLabelMediaWindow',
mixins: ['Proxmox.Mixin.CBind'],
isCreate: true,
isAdd: true,
title: gettext('Label Media'),
submitText: gettext('OK'),
url: '/api2/extjs/tape/drive/',
cbindData: function(config) {
let me = this;
return {
driveid: config.driveid,
label: config.label,
};
},
method: 'POST',
showProgress: true,
submitUrl: function(url, values) {
let driveid = encodeURIComponent(values.drive);
delete values.drive;
return `${url}/${driveid}/label-media`;
},
items: [
{
xtype: 'displayfield',
cls: 'pmx-hint',
value: gettext('Make sure that the correct tape is inserted in the selected drive and type in the label written on the tape.'),
},
{
xtype: 'pmxDisplayEditField',
fieldLabel: gettext('Drive'),
submitValue: true,
name: 'drive',
editConfig: {
xtype: 'pbsDriveSelector',
},
cbind: {
value: '{driveid}',
editable: '{!driveid}',
},
},
{
fieldLabel: gettext('Label'),
name: 'label-text',
xtype: 'pmxDisplayEditField',
submitValue: true,
allowBlank: false,
cbind: {
value: '{label}',
editable: '{!label}',
},
},
{
xtype: 'pbsMediaPoolSelector',
fieldLabel: gettext('Media Pool'),
name: 'pool',
allowBlank: true,
skipEmptyText: true,
},
],
});