Hi, This is my model:
class Fish(models.model): species = models.ForeignKey('Species') .... more fields class Species(models.Model): key = models.SlugField(primary_key=True,maxlength=20) .... more fields Given a Fish object, I want to be able to use the value of the Fish.species field in a template, *without* an extra query to the database to get the Species object. I'm only interested in the actual value of the primary key, not any of the other fields in the Species object. This must be possible, because the Fish object already knows the value of the species primary key. How can I get the value without an unnecessary query? Thanks in advance, Matthew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---