change view for department and professor panels now work
authorwilliambratches <williambratches@gmail.com>
Tue, 25 Mar 2014 21:37:59 +0000 (17:37 -0400)
committerwilliambratches <williambratches@gmail.com>
Tue, 25 Mar 2014 21:37:59 +0000 (17:37 -0400)
karmaworld/apps/moderation/admin.py

index 4b14b81a7d67b70bc23f792c6972586dcfb6e600..5eb6e6c7ffc843bac867ccc713b87ea8fa7cc93a 100644 (file)
@@ -52,7 +52,7 @@ class NoteModerator(NoteAdmin):
     list_display = ('name', 'flags', 'course', 'is_hidden', 'uploaded_at', 'ip')
     # Sort by highest number of flags first, and then by date for ties
     ordering = ('-flags', '-uploaded_at')
-    # Enable resetting flags
+    # Enable resetting flagsoo
     actions = (reset_flags, hide_notes, show_notes)
 
 # Structure views of Department objects
@@ -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 = ('-flags', '-uploaded_at')
+    ordering = ()
     # 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 = ('-flags', '-uploaded_at')
+    ordering = ()
     # Enable resetting flags
     actions = (reset_flags,)