Author: floguy
Date: Wed Oct 15 00:30:24 2008
New Revision: 1046

Modified:
    trunk/apps/core_apps/games/thing.py

Log:
Fixed ordering.

Modified: trunk/apps/core_apps/games/thing.py
==============================================================================
--- trunk/apps/core_apps/games/thing.py (original)
+++ trunk/apps/core_apps/games/thing.py Wed Oct 15 00:30:24 2008
@@ -5,14 +5,14 @@
      game_plays = things.OrderField(
          verbose_name_asc='Play Count',
          verbose_name_desc='Play Count',
-        url_asc='most-played',
-        url_desc='least-played'
+        url_asc='least-played',
+        url_desc='most-played',
      )
      created = things.OrderField(
          verbose_name_asc='Date Added',
          verbose_name_desc='Date Added',
-        url_asc='newest',
-        url_desc='oldest'
+        url_asc='oldest',
+        url_desc='newest'
      )
      name = things.OrderField(
          verbose_name_asc='Alphabetical',

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to