X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/e0e7814e58df1dc0342e3f88e7bcfad4ed483079..5d070af36a7da6e1b25023ae96b30d66573343dc:/templates/list.tmpl
diff --git a/templates/list.tmpl b/templates/list.tmpl
index 19b108e..e300f61 100644
--- a/templates/list.tmpl
+++ b/templates/list.tmpl
@@ -20,7 +20,7 @@ List of your VMs
Hostname |
Uptime |
VNC |
- Restart? |
+ |
#for $machine in $machines:
$machine.name |
@@ -37,46 +37,49 @@ List of your VMs
|
#end if
#slurp
-#if $uptimes.get($machine.name)
-$uptimes[$machine.name]#slurp
+#if $uptimes[$machine]
+$uptimes[$machine]#slurp
#else
Off#slurp
#end if
|
#slurp
-#if $has_vnc.get($machine.name) == True
+#if $has_vnc[$machine] == True
Console#slurp
#else
-$has_vnc.get($machine.name)
+$has_vnc[$machine]
#end if
|
|
#end for
#end if
-
+#if $can_add_vm
Create a new VM:
-
+#else
+You are at the maximum number of VMs.
+#end if
#end def