On Apr 23, 8:15 am, Aditya Sriram M <[email protected]> wrote: > Ohh this looks little promising.. > > However, > > 1. I need a few cols of table1 and few from table 2 to be displayed. How > can we achieve that at the .filter() level? and > 2. At the view level like using the list_display () for displaying them > in the Admin interface
If you want to get results just define the ForeignKey (or OneToOneKey) in your Customer or User model. After this .select_related and .prefetch_related should solve the problems you are currently facing. If you can't define that ForeignKey for one reason or another you need a lot more knowledge of how Django works. All the things you need to do are too numerous to handle in a django-users post. It is possible there will be some problems which are very hard to solve along this path. In short, I recommend to just define the relation between the models. - Anssi -- 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.

