Show "StandaloneVM" instead of "--" if VMs isn't based on template
Also for NetVM.
This commit is contained in:
parent
d638d53d38
commit
bb7357781e
@ -104,8 +104,10 @@ class VmInfoWidget (QWidget):
|
|||||||
|
|
||||||
layout1 = QHBoxLayout()
|
layout1 = QHBoxLayout()
|
||||||
|
|
||||||
if vm.is_appvm() or vm.is_disposablevm():
|
if vm.template_vm is not None:
|
||||||
self.label_tmpl = QLabel ("<i><font color=\"gray\">" + (vm.template_vm.name if vm.template_vm is not None else "--") + "</i></font>")
|
self.label_tmpl = QLabel ("<i><font color=\"gray\">" + (vm.template_vm.name) + "</i></font>")
|
||||||
|
elif vm.is_appvm(): # and vm.template_vm is None
|
||||||
|
self.label_tmpl = QLabel ("<i><font color=\"gray\">StandaloneVM</i></font>")
|
||||||
elif vm.is_template():
|
elif vm.is_template():
|
||||||
self.label_tmpl = QLabel ("<i><font color=\"gray\">TemplateVM</i></font>")
|
self.label_tmpl = QLabel ("<i><font color=\"gray\">TemplateVM</i></font>")
|
||||||
elif vm.qid == 0:
|
elif vm.qid == 0:
|
||||||
|
Loading…
Reference in New Issue
Block a user