X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/27dcf25cbe250f43ea32fc9bc7a4ec6691db66e9..06d55379f8eaaffe42ca5a1ac59e1cb0633c12e9:/code/templates/list.mako diff --git a/code/templates/list.mako b/code/templates/list.mako index b03a04f..d513763 100644 --- a/code/templates/list.mako +++ b/code/templates/list.mako @@ -84,23 +84,27 @@ ${self.fn.cdromList(defaults.cdrom, "$('cd_or_auto_cd').checked = true;$('autoin <%def name="machineRow(machine)"> -
+ % if machine.uptime and installing[machine]: + Installing... + % else: + -
+ % endif - ${machine.name} + ${machine.name} ${machine.memory}M ${machine.owner} ${machine.administrator} % if machine.nics: - ${', '.join(map(lambda x: x.ip, machine.nics))} + ${', '.join(nic.ip for nic in machine.nics)} % else: % endif @@ -111,14 +115,16 @@ ${datetime.timedelta(seconds=int(machine.uptime))}\ \ % if has_vnc[machine] == True: -Console\ +Console\ +% elif has_vnc[machine] == 'ParaVM': +ParaVM${self.fn.helppopup("ParaVM Console")} % elif has_vnc[machine] != 'Off': ${has_vnc[machine]} % endif - ${machine.description} + ${machine.description|self.fn.module.nl2br}