diff --git a/www/manager/Utils.js b/www/manager/Utils.js index 0dfa1f54..7bea4a65 100644 --- a/www/manager/Utils.js +++ b/www/manager/Utils.js @@ -369,13 +369,33 @@ Ext.define('PVE.Utils', { statics: { format_task_description: function(type, id) { if (type == 'vncproxy') { - return "VNC connection to VM " + id; + return "VNC connection to VM/CT " + id; } if (type == 'vncshell') { return "VNC shell"; } + if (type == 'qmigrate') { + return "Migrate VM " + id; + } + + if (type == 'vzcreate') { + return "Create CT " + id; + } + + if (type == 'vzdestroy') { + return "Destroy CT " + id; + } + + if (type == 'vzstart') { + return "Start CT " + id; + } + + if (type == 'vzstop') { + return "Stop CT " + id; + } + return type; },