how can i order by vendor first?
ordering = [ 'vendor', 'name' ] fails
any ideas?
Ordering by a foreign key isn't technically supported at this point,
but you can fake it. Instead of 'vendor' try 'appname_vendor.name'
where 'appname_vendor' is the name of the vendor table in your
database and 'name' is the name of the column you want to sort by.
This worked last time a checked (a few weeks ago), but no promises.
You'll probably have to add the list_select_related = True option to
your inner Admin class as well. list_select_related is documented in
the model-api docs on djangoproject.com if you want to learn more
about it.
Joseph