Re: search across models

2013-02-02 Thread Karen Tracey
You also posted this to django-users, which is where it belongs. Please do not crosspost usage questions to django-developers; the topic of this list is the development of Django itself. Thanks, Karen -- You received this message because you are subscribed to the Google Groups "Django

search across models

2013-02-02 Thread Aswani Kumar
hi all, i have a big question. how can i perform search queries like on following models RESTAURANT_TYPES = ( ('C', 'Chinese'), ('A', 'American'), ('J', 'Japanese'), ) class city (models.Model): name = models.CharField(max_length=200) class restaurants(models.Model):