Re: Joins - a problem

2005-11-05 Thread PythonistL
Thank you Jeff for the explanation. Regards, Lad.

Re: Joins - a problem

2005-11-04 Thread Jeffrey E. Forcier
I'm afraid you're not making a lot of sense, but if I read you right, you want to match up primary keys / IDs from the Tradelead table with their respective registered User's Login info. In which case you could do the following: from django.models.myapp import users,tradeleads for trade

Joins - a problem

2005-11-04 Thread PythonistL
I have the following model class User(meta.Model): Login= meta.CharField( maxlength=50,unique=True) Password= meta.CharField( maxlength=50) Email= meta.EmailField(blank=True) InvoicingAddress= meta.CharField( maxlength=200,blank=True) Date_joined=meta.DateTimeFiel