> > search_fields = ['question', 'choice_choice'] > > Where choice_choice is supposed to be pointing to the choice field in > the choice model, but something is not working with that. I am sure > that I am missing something very easy and I was wondering if someone > could point it out to me.
Try two underscores: search_fields = ['question', 'choice__choice'] --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

