sorting should now function properly in moderator panel
authorwilliambratches <williambratches@gmail.com>
Tue, 25 Mar 2014 21:41:38 +0000 (17:41 -0400)
committerwilliambratches <williambratches@gmail.com>
Tue, 25 Mar 2014 21:41:38 +0000 (17:41 -0400)
karmaworld/apps/moderation/admin.py

index 5eb6e6c7ffc843bac867ccc713b87ea8fa7cc93a..22b7f7eb86cac2496e6a426bbb590ac2d7968fae 100644 (file)
@@ -61,7 +61,7 @@ class DepartmentModerator(DepartmentAdmin):
     # Identify fields to display on the Change page
     list_display = ('name', 'school', 'url')
     # Sort by highest number of flags first, and then by date for ties
-    ordering = ()
+    ordering = ('-school', '-name')
     # Enable resetting flags
     actions = (reset_flags,)
 
@@ -71,7 +71,7 @@ class ProfessorModerator(ProfessorAdmin):
     # Identify fields to display on the Change page
     list_display = ('name', 'email')
     # Sort by highest number of flags first, and then by date for ties
-    ordering = ()
+    ordering = ('-name', '-email')
     # Enable resetting flags
     actions = (reset_flags,)