#146 closed defect (fixed)
Change order_by and ordering parameters to be less verbose
Description ¶
Instead of the following:
ordering = (('pub_date', 'ASC'), ('name', 'DESC'), (None, 'RANDOM'))
...we should use the following:
ordering = ('pub_date', '-name', '?')
Change History (2)
comment:1 by , 20 years ago
Status: | new → assigned |
---|
comment:2 by , 20 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [292]) Fixed #146 -- Changed order_by and ordering parameters to be less verbose. The old syntax is still supported but will not be supported by first release.