Rock wrote:

> Ahhh. That makes sense. Thanks!

footnote: also note that all uses of "articles" in the function refers
to the
same object, so your first line

        articles = articles.get_list(reporter_id__exact=self.id)

replaces the module with a sequence.  it doesn't matter in this
simple case, but may cause problems in larger examples.  I'd
recommend something like:

        article_list = articles.get_list(reporter_id__exact=self.id)

</F>


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