projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
improve display of VM list
[invirt/packages/invirt-web.git]
/
code
/
main.py
diff --git
a/code/main.py
b/code/main.py
index
d17ed97
..
c419f32
100755
(executable)
--- a/
code/main.py
+++ b/
code/main.py
@@
-210,6
+210,9
@@
def getListDict(user):
owner=user,
cdrom='gutsy-i386')
checkpoint.checkpoint('Got defaults')
owner=user,
cdrom='gutsy-i386')
checkpoint.checkpoint('Got defaults')
+ def sortkey(machine):
+ return (machine.owner != user, machine.owner, machine.name)
+ machines = sorted(machines, key=sortkey)
d = dict(user=user,
cant_add_vm=validation.cantAddVm(user),
max_memory=max_memory,
d = dict(user=user,
cant_add_vm=validation.cantAddVm(user),
max_memory=max_memory,