mediumgrade ÐÉÛÅÔ:
> I have a simple blog app that I am working on. In this app, I have
> ojects for  each entry as well as the author who wrote it. I wrote a
> simple view which displays a list of all entrys made, but I want that
> list to include the name of the author. Since the author's name is not
> part of the entry, how do I access attributes from related objects
> within a template?

If I'm guessing correctly that relation is like this:

     class Article(models.Model):
       author = models.ForeignKey(Author)

... then {{ article.author.name }} should work.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to