vote up 2 vote down star

I have the following classes: Ingredients, Recipe and RecipeContent...

class Ingredient(models.Model):
    name = models.CharField(max_length=30, primary_key=True)
    qty_on_stock = models.IntegerField()

    def __unicode__(self):
        return self.name

class Recipe(models.Model):
    name = models.CharField(max_length=30, primary_key=True)
    comments = models.TextField(blank=True)
    ingredient = models.ManyToManyField(Ingredient)

    def __unicode__(self):
        return self.name

class RecipeContent(models.Model):
    recipe = models.ForeignKey(Recipe)
    ingredients = models.ForeignKey(Ingredient)
    qty_used = models.IntegerField()

but for __unicode__() in RecipeContent I would like to use the Recipe name to which this RecipeContent belongs to... is there a way to do it?

flag

Just a note about style, I'd recommend that you don't pluralize your ForeignKey field names since they can only point to one record at a time. I'm referring to your ingredients field under RecipeContent. – Soviut Dec 28 '08 at 9:04

2 Answers

vote up 7 vote down check
class RecipeContent(models.Model):
  ...
  def __unicode__(self):
    # You can access ForeignKey properties through the field name!
    return self.recipe.name
link|flag
sigh... it was so simple! shows what a noob I am... Thanks for the answer. – EroSan Dec 27 '08 at 20:07
vote up 0 vote down

Yes, you can (as bishanty points), but be prepared for situation when __unicode__() is called but FK is not set yet. I came into this few times.

link|flag
true... but maybe i can deal with that using something along the lines of "if self.recipe.name: return self.recipe.name"? – EroSan Jan 2 '09 at 16:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.