﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
99	"enhance model ""ordering"" to reduce redundancy for multiple same-order fields"	maney@…	Adrian Holovaty	"currently:

    ordering = (
        ('last_name','ASC'),
        ('first_name','ASC'),
        ('middle_name','ASC'),
        ('name_suffix','ASC'),
    )

suggested:

    ordering = ((('last_name','first_name','middle_name','name_suffix'),'ASC'),)

Looks like the same ""string or sequence of strings"" trick, but going the other way this time!  Should be backwards compatible, too.
"	enhancement	closed	Core (Other)		normal	fixed			Design decision needed	0	0	0	0	0	0
