<td>#slurp
#if $machine.uptime
$machine.uptime#slurp
-#else
-Off#slurp
#end if
</td>
<td>#slurp
#if $has_vnc[$machine] == True
<a href="vnc?machine_id=$machine.machine_id">Console</a>#slurp
-#else
+#else if $has_vnc[$machine] != 'Off'
$has_vnc[$machine]
#end if
</td>
#def machineList($machines)
<table>
<tr>
- <td>Name</td>
- <td>Memory</td>
- <td>Owner</td>
- <td>Administrator</td>
- <td>IP</td>
- <td>Uptime</td>
- <td>VNC</td>
- <td></td>
+ <th>Name</th>
+ <th>Memory</th>
+ <th>Owner</th>
+ <th>Administrator</th>
+ <th>IP</th>
+ <th>Uptime</th>
+ <th>VNC</th>
+ <th></th>
+ </tr>
#for $machine in $machines:
$machineRow($machine)
#end for