[SCM] live-studio branch, master, updated. 1fe032df7aaa4bff181daf386b8b4bd02929a28c
Chris Lamb
lamby at debian.org
Sun Aug 1 18:35:43 UTC 2010
The following commit has been merged in the master branch:
commit f281278260a55691565d9b0525202ebae004d5b8
Author: Chris Lamb <lamby at debian.org>
Date: Sun Aug 1 14:21:40 2010 -0400
Order Config's by reverse date by default
diff --git a/live_studio/config/models.py b/live_studio/config/models.py
index f5acf66..faeee37 100644
--- a/live_studio/config/models.py
+++ b/live_studio/config/models.py
@@ -76,6 +76,9 @@ class Config(models.Model):
choices=data.KEYBOARD_LAYOUTS,
)
+ class Meta:
+ ordering = ('-created',)
+
def __unicode__(self):
return "%s: name=%s" % (self.user.username, self.name)
--
live-studio
More information about the debian-live-changes
mailing list