> In fact, that whole thread possibly has some relevance to your problem.
> Note that the solution in the particular post I've highlighted works on
> Python 2.3 and up, but if you are using 2.4 or later, Ned Batchelder's
> post is of more than trivial relevance.
So, (with my very limited python knowledge) I could essentially do
this?
object_list = Entry.objects.all().order_by('-pub_date')
object_list += Videocast.objects.all().order_by('-pub_date')
object_list += Tutorial.objects.all().order_by('-pub_date')
object_list.sort(key=lambda w: w.headline)
And then pass object_list in the generic view?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---