On Wed, 2008-08-20 at 05:55 -0700, laspal wrote: > hi, > I am trying to sort my tables depending upon the header. > Its working fine if my models does have any ForeignKey or > ManyToManyField. > but if its does sorting is not working.
"Not working" could mean anything: the codes crashes, it runs but nothing is sorted, sorting occurs but is different from what you expect, your computer caught on fire, etc. Before anybody can answer your question, they'll need to understand the problem you are experiencing. > class Meeting(models.Model): > created_by = models.ForeignKey(User, blank=True, null=True) > meeting_desc = models.CharField(maxlength = 2000) > meeting_date = models.DateField('meeting date') > > def meetings( request , page=None, orderby=None, orderas=None, > type=None ): > > activemaintab = "meetings" > orderbyowner = "owner" > orderbydate = "date" > > defaultsortby = "meeting_date" > defaultorderas = "desc" > if orderbydate == "date": > orderby = "meeting_date" > if orderby =="owner": > orderby ="created_by" > > meeting_list = Meeting.objects.order_by(sortby) I doubt that this is your real code. You never define "sortby" in this method, so the code would just fail one the last line. Best to ensure your short example (and it's great that you have a short example) at least runs without syntax errors so that we are all talking about the same code. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---