OK, I love the django way of doing DB lookups, but I can't seem to get a list of records for the following:
class Portfolio(models.Model): user = models.ForeignKey(User) description = models.CharField(maxlength=50) notes = models.CharField(maxlength=200, blank=True) public = models.BooleanField(null=True, blank=True) class Holding(models.Model): portfolio = models.ForeignKey(Portfolio) symbol = models.CharField(maxlength=10) shares = models.FloatField(max_digits=7, decimal_places=3) cash = models.FloatField(max_digits=7, decimal_places=2) reason = models.CharField(maxlength=200, blank=True) aimtype = models.CharField(maxlength=20, choices = AIMTYPES) buymin = models.FloatField( max_digits=10, decimal_places=0, default=500 ) buypercent = models.FloatField( max_digits=10, decimal_places=0, default=10 ) sellmin = models.FloatField( max_digits=10, decimal_places=0, default=500 ) sellpercent = models.FloatField( max_digits=10, decimal_places=0, default=10 ) started = models.BooleanField( blank=True ) portcontrol = models.IntegerField( blank=True, default=0 ) As you can see, each user can have many portfolios, and each portfolio has N number of holdings. What I want is a list of all holdings for a particular user, is this possible? Thanks --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---