Created
December 16, 2010 12:26
-
-
Save meehow/743341 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grupy = Grupa.objects.select_related('bank') | |
if settings.DATABASE_ENGINE.startswith('postgresql'): | |
# uwaga, brzydki hack do sortowania w postgresie | |
grupy = grupy.extra(select={'nazwa_lower': 'LOWER(bank_bank.nazwa)'}, order_by=['-bank__aktywny','nazwa_lower']) | |
else: | |
grupy = grupy.extra(order_by=['-bank__aktywny','bank__nazwa']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment