X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/d5c709a5a9d53bbff6fae1e3eab6e0a4acf294bf..215d45efd45e47073a2f4238e4e3cef2dd342dc9:/code/templates/list.mako?ds=inline
diff --git a/code/templates/list.mako b/code/templates/list.mako
index e500896..777134f 100644
--- a/code/templates/list.mako
+++ b/code/templates/list.mako
@@ -9,6 +9,12 @@
VM List
%def>
+%if os.path.exists("/etc/invirt/motd.html"):
+
+
${open('/etc/invirt/motd.html').read()|n}
+
+%endif
+
<%def name="createForm()">
% if cant_add_vm:
${cant_add_vm}
@@ -19,6 +25,7 @@ VM List
% elif new_machine:
Congratulations! You successfully created a new VM called ${new_machine}.
% endif
+
% endif
%def>
-<%def name="machineRow(machine)">
-
+<%def name="machineRow(machine, dark)">
+<%
+ on = (machine.uptime is not None)
+%>
+
-
+ % endif
|
${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
\
-% if machine.uptime:
+% if on:
${datetime.timedelta(seconds=int(machine.uptime))}\
% endif
|
@@ -119,8 +142,12 @@ ${has_vnc[machine]}
% endif
-
- ${machine.description} |
+
+ ${machine.description|self.fn.module.nl2br} |
%def>
@@ -136,17 +163,10 @@ ${has_vnc[machine]}
Uptime |
VNC |
-% for machine in machines:
- ${machineRow(machine)}
+% for n, machine in enumerate(machines):
+ ${machineRow(machine, (n%2)==0)}
% endfor
-
-
%def>
What is XVM?